summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-01-04 17:37:06 -0500
committerAdam Jackson <ajax@redhat.com>2013-01-15 14:32:14 -0500
commitead50a9a274aa96bef94e57c4625be8e9288af4e (patch)
tree57014680a013b7b585751be781dc75c5f4aa7c60
parent8f5f3f7a3c36088d6faf0f13da4416596257bc58 (diff)
autogen.sh: Implement GNOME Build API
http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 904cd67..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,4 +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