autogen.sh: Add -n as alternative to NOCONFIGURE

This commit is contained in:
Kim Woelders 2020-01-11 12:47:27 +01:00
parent 2da59b5699
commit 22f7b8876a
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ rm -rf autom4te.cache aclocal.m4
autoreconf -vif
if [ -z "$NOCONFIGURE" ]; then
if [ -z "$NOCONFIGURE" -a "$1" != "-n" ]; then
./configure "$@"
fi