summaryrefslogtreecommitdiff
blob: 4e5964813105b18299d1db2df6163007642db67f (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 -Zl "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
}