summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-11-07 20:35:32 -0500
committerAdam Jackson <ajax@redhat.com>2013-11-08 08:28:17 -0500
commit984cfd0c90870310e09d55784c3aaa723f59f527 (patch)
tree1a0a9a9e8084f648a008dca80d3b2cba74c0e840
parent6c3d341467acd10eafc1462ee94c3efd3a4788ef (diff)
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index e81f989..7629e02 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,5 +9,7 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
+if test -z "$NOCONFIGURE"; then
+ exec $srcdir/configure --enable-maintainer-mode "$@"
+fi