summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-01-02 16:38:47 -0800
committerKeith Packard <keithp@keithp.com>2014-01-02 16:38:47 -0800
commit24f3a56e541b0a9e6c6ee76081f441221a120ef9 (patch)
tree79c99448516b25f9347d705b4ed50694ded913af
parente2763622941bc35db9a2dbf16e10bb830af07d67 (diff)
downloadxorg-proto-presentproto-24f3a56e541b0a9e6c6ee76081f441221a120ef9.tar.gz
autogen.sh: Implement GNOME Build API
http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Keith Packard <keithp@keithp.com>
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 904cd67..fc34bd5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,4 +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