1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-08 04:26:01 -04:00

Merge pull request #845 from ailin-nemui/funny-bug

warn if there is non-portable code in the test-driver
This commit is contained in:
ailin-nemui 2018-02-13 10:09:06 +01:00 committed by GitHub
commit c2c879e8c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,3 +57,11 @@ if test x$NOCONFIGURE = x; then
else
echo Skipping configure process.
fi
if grep -q '==\|\[\[' "$srcdir"/build-aux/test-driver; then
echo
echo "************************************************************************"
echo "**Warning**: your build is not portable, please do not make dist"
echo " see https://bugzilla.opensuse.org/show_bug.cgi?id=1076146"
echo "************************************************************************"
fi