From 984cfd0c90870310e09d55784c3aaa723f59f527 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 7 Nov 2013 20:35:32 -0500 Subject: autogen.sh: Honor NOCONFIGURE=1 See http://people.gnome.org/~walters/docs/build-api.txt --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index e81f989..7629e02 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,5 +9,7 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +if test -z "$NOCONFIGURE"; then + exec $srcdir/configure --enable-maintainer-mode "$@" +fi -- cgit v1.2.3