blob: 0cf58d3be47f8efed3a9d445f22f118c5d34b5d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if [[ ${EBUILD_PHASE} == compile ]] ; then
if grep -q "Assume that mode_t is passed compatibly" ${S} -r --include openat.c; then
eerror "The source code contains a faulty openat.c unit from gnulib."
eerror "Please report this on Gentoo Bugzilla in Gentoo/Alt product for component FreeBSD."
eerror "http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%2FAlt&component=FreeBSD&op_sys=FreeBSD"
die "Broken openat.c gnulib unit."
fi
if grep -q "test .*==" "${S}" -r --include configure; then
eerror "Found a non POSIX test construction in a configure script"
eerror "The configure checks of this package may not function properly"
eerror "Please report this on Gentoo Bugzilla in Gentoo/Alt product for component FreeBSD."
eerror "http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%2FAlt&component=FreeBSD&op_sys=FreeBSD"
fi
fi
|