summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-03-21 17:44:10 -0400
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-03-21 23:01:34 +0100
commitf3579abb3a8df2e3e635e6419ec2ca04c403921b (patch)
tree4674c14c1d53dc7546775363875d3342b4dc2f16
parentdf6bc6269ebd3144663cbdb8457fbe71d9202b6a (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 3e6f2cd..7d7c534 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -160,5 +160,7 @@ do_cmd $AUTOCONF
cd "$ORIGDIR" || exit $?
rm -f config.cache
-do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} || exit 1
+if test -z "$NOCONFIGURE"; then
+ do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} || exit 1
+fi