From: Colin Walters Date: Sat, 17 Sep 2011 15:21:30 +0000 (-0400) Subject: autogen.sh: Honor NOCONFIGURE environment variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d515c2146650678da7c1dca42fd914aaeb51157;p=mesa.git autogen.sh: Honor NOCONFIGURE environment variable See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Dave Airlie --- diff --git a/autogen.sh b/autogen.sh index c76bf8b07bd..b5f6ec4a97a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -15,4 +15,6 @@ MAKEFLAGS="" autoreconf -v --install || exit 1 -"$srcdir"/configure "$@" +if test -z "$NOCONFIGURE"; then + "$srcdir"/configure "$@" +fi