summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2014-06-23 06:59:35 -0400
committerSebastian Dröge <sebastian@centricular.com>2014-06-23 13:05:09 +0200
commite98a61fc6fbbec5833dfb17455e3ba5e46611135 (patch)
treef9a4ccd433a17bcabc16c1e35994a66d65bd7ce6
parent999b29de62c4de4a281b155dd7b9778a92222394 (diff)
autogen: Honor NOCONFIGURE=1
See https://github.com/cgwalters/build-api
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 7b71391..19ee6d8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -12,5 +12,7 @@ autoreconf -i -f
cd "$olddir"
-$srcdir/configure --disable-static --enable-maintainer-mode --enable-gtk-doc $@
+if test -z "$NOCONFIGURE"; then
+ exec $srcdir/configure --disable-static --enable-maintainer-mode --enable-gtk-doc $@
+fi