summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-06-29 10:52:59 -0400
committerColin Walters <walters@verbum.org>2010-06-29 10:52:59 -0400
commitc28e9a658b86cd550637bfdbd587db632c70b13a (patch)
treeb04f59e2ee017f809a979fb9014237a894ebe927 /autogen.sh
parent02bb49fcf2062481af07ebd32c4389438377eb0a (diff)
downloadvala-c28e9a658b86cd550637bfdbd587db632c70b13a.tar.gz
[autogen.sh] Support NOCONFIGURE, like gnome-common
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index a11c073c0..1eaa1cc3f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -24,4 +24,6 @@ rm -f .version
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure --enable-maintainer-mode "$@"
+fi