summaryrefslogtreecommitdiff
blob: 31cbd026a323c4366e95287bb88444a855c8e035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

patch_targets() {
    # Find the configure scripts with a libtool that checks for freebsd
    # versioning format, and that were not patched with our patch already
    find "${WORKDIR}" -name configure -print0 | \
        xargs -0 grep --null -l "version_type=freebsd-" | \
	xargs -0 grep -L 'Handle Gentoo/FreeBSD as it was Linux'
}

# This patch is required only on Gentoo/FreeBSD
patch_required() {
    [[ ${CHOST} == *-gentoo-freebsd* ]] || return 1

    return 0
}