summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index c76bf8b07bd..b5f6ec4a97a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -15,4 +15,6 @@ MAKEFLAGS=""
autoreconf -v --install || exit 1
-"$srcdir"/configure "$@"
+if test -z "$NOCONFIGURE"; then
+ "$srcdir"/configure "$@"
+fi