summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2014-05-31 23:36:28 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2018-03-09 18:08:27 -0800
commitd407ce86fa7a1402eb6d12895a5e97a6ffd3478a (patch)
treed607b3754d2f89ec736c224079211189c1a735b4
parent4168dad45e494982e77b4ed4021313de4d010612 (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.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 231605e..a0fdb77 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -12,5 +12,6 @@ cd $ORIGDIR || exit $?
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
git config --local format.subjectPrefix "PATCH app/xmore"
-$srcdir/configure "$@"
-
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi