blob: 19145fa7d9f4fb10ff5c7f75f0e983f864f4e824 (
plain)
1
2
3
4
5
6
7
8
|
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 openal.c unit from gnulib."
eerror "Please report this on Gentoo Bugzilla in Gentoo BSD product."
eerror "http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20BSD"
die "Broken openal.c gnulib unit."
fi
fi
|