From 4fb216e8254e3236701f9af681f74258f99026ba Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Wed, 8 Jan 2020 18:51:18 +0100 Subject: [PATCH] autogen.sh: Add -n as alternative to NOCONFIGURE --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 0d433612..245fe710 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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