summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-01-04 22:37:06 +0000
committerSøren Sandmann Pedersen <ssp@redhat.com>2013-03-15 16:22:44 -0400
commit8dd5b22ea4469515b4218fad0deaf76cc98e3b9c (patch)
tree27bd3b8c81c1b60a2d46fb5e5218d866cfd26ba3
parent06618a9b3d9585508b0debd18d5b981636f98c54 (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 f83ed27..7415c05 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -10,4 +10,6 @@ test -d m4 || mkdir m4
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi