Code

autogen: don't run ./configure if $NOCONFIGURE is set
authorJ. Alexander Treuman <jat@spatialrift.net>
Sun, 21 Sep 2008 19:36:09 +0000 (21:36 +0200)
committerMax Kellermann <max@duempel.org>
Sun, 21 Sep 2008 19:36:09 +0000 (21:36 +0200)
autogen.sh

index 1a114eab0757191052fdd990f5a9e86724a86b5b..4c02b8af463ab88e6035d09fd582d2daf12dc9b4 100755 (executable)
@@ -25,5 +25,7 @@ automake --add-missing
 
 
 # configure
-echo "./configure $*"
-./configure $*
+if test x$NOCONFIGURE = x; then
+       echo "./configure $*"
+       ./configure $*
+fi