From: Colin Walters Date: Tue, 29 Jun 2010 14:52:59 +0000 (-0400) Subject: [autogen.sh] Support NOCONFIGURE, like gnome-common X-Git-Tag: 0.9.3~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c28e9a658b86cd550637bfdbd587db632c70b13a;p=thirdparty%2Fvala.git [autogen.sh] Support NOCONFIGURE, like gnome-common --- diff --git a/autogen.sh b/autogen.sh index a11c073c0..1eaa1cc3f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -24,4 +24,6 @@ rm -f .version autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure --enable-maintainer-mode "$@" +fi