summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index f722e94d..d139fa47 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -85,8 +85,9 @@ autoconf || echo "autoconf failed - version 2.5x is probably required"
cd $ORIGDIR
-run_configure=true
-for arg in $*; do
+if test x"$NOCONFIGURE" = x; then
+ run_configure=true
+ for arg in $*; do
case $arg in
--no-configure)
run_configure=false
@@ -94,7 +95,10 @@ for arg in $*; do
*)
;;
esac
-done
+ done
+else
+ run_configure=false
+fi
if $run_configure; then
$srcdir/configure --enable-maintainer-mode --config-cache "$@"