summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorailin-nemui <ailin-nemui@users.noreply.github.com>2018-02-13 10:09:06 +0100
committerGitHub <noreply@github.com>2018-02-13 10:09:06 +0100
commitc2c879e8c55afcb8a737e4535c8d878407807040 (patch)
tree044998cf8537ee3a042b15953fe918851280bf23
parentccfb2dabcf5eed702ce28245ba8e7de81c1ec6bb (diff)
parentadc812b6b6ed2df2c670586e5308cb767955dddd (diff)
downloadirssi-c2c879e8c55afcb8a737e4535c8d878407807040.zip
Merge pull request #845 from ailin-nemui/funny-bug
warn if there is non-portable code in the test-driver
-rwxr-xr-xautogen.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 9feb0872..17f60f89 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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