1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 03:12:44 +00:00

(trunk) #3939 "autogen.sh doesn't work correctly on systems where /bin/sh doesn't point to bash" -- fixed with patch from er13

This bug was introduced a couple of days ago in the fix to #3901 "Confusing error message when libtool is missing." The fix introduced a bashism, which should be avoided if we want to work with strict sh.
This commit is contained in:
Jordan Lee 2011-01-23 16:12:58 +00:00
parent 599d33035b
commit e2c7884c7e

View file

@ -24,10 +24,7 @@ export LIBTOOLIZE
./update-version-h.sh
autoreconf -fi
if [[ $? -ne 0 ]]; then
exit 1
fi
autoreconf -fi || exit 1;
if test "$GETTEXTIZE"; then