autogen.sh: Add -n as alternative to NOCONFIGURE

This commit is contained in:
Kim Woelders 2020-01-08 18:51:18 +01:00
parent 1156873efa
commit 503f602fe7
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