summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-01-16 13:02:57 -0500
committerAdam Jackson <ajax@redhat.com>2013-01-16 13:04:48 -0500
commita9a92e85b2f8ea54855a3b45eb0882d7da50c1a8 (patch)
tree39e7520e7b3a2c9f37ece82bcf09f7c4cf1d7342
parent4a15ed3b1edd22d67307620f2265faf365700519 (diff)
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
-rwxr-xr-xautogen.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index e81f989..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,5 +9,6 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
-
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi