summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-01-16 13:02:57 -0500
committerAdam Jackson <ajax@redhat.com>2013-01-16 13:02:57 -0500
commited1b90216e59e6b3ac6ac5fd2faca8e056c76caa (patch)
treef4f57c517d52cd8efc5d84d7a43f63294659015a /autogen.sh
parent0522fab51eec0aa3e623aa17c5b7ea3aa6dfec45 (diff)
downloadxorg-app-xkbcomp-ed1b90216e59e6b3ac6ac5fd2faca8e056c76caa.tar.gz
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index e81f989..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,5 +9,6 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
-
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi