autogen.sh: Add -n as alternative to NOCONFIGURE

This commit is contained in:
Kim Woelders 2020-01-08 18:49:51 +01:00
parent a17caca4c7
commit 3274b92440
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