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>2022-07-24 14:06:29 -0700
commit50574404bd1fcdb61a68f30a0dd0d15b38ee36a3 (patch)
treecfd7ef0ed0c29ca72264fb3ffc5c4e36db872ffc
parent3de8874f5db31a9fe107f99c46c8548a05efaef1 (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 85f1f6a..fe63941 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -24,4 +24,6 @@ fi
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure "$@"
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi