Mesa (master): autogen.sh: Honor NOCONFIGURE environment variable

Dave Airlie airlied at kemper.freedesktop.org
Mon Sep 19 18:54:25 UTC 2011


Module: Mesa
Branch: master
Commit: 4d515c2146650678da7c1dca42fd914aaeb51157
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4d515c2146650678da7c1dca42fd914aaeb51157

Author: Colin Walters <walters at verbum.org>
Date:   Sat Sep 17 11:21:30 2011 -0400

autogen.sh: Honor NOCONFIGURE environment variable

See http://people.gnome.org/~walters/docs/build-api.txt

Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 autogen.sh |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index c76bf8b..b5f6ec4 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




More information about the mesa-commit mailing list