summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2014-05-31 21:39:32 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2014-06-04 18:13:32 -0700
commit5bf89151abdfdb1e5c183df9f28ee57b75e33c03 (patch)
tree9cb29a4b1b6fd3b827598e2e74873f33fce2cbf4
parente3275108cb618a8b42d30cff9116821e767c78b7 (diff)
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 80ae530..21bd15c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,5 +9,7 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure "$@"
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi