Module: Mesa Branch: master Commit: 4d515c2146650678da7c1dca42fd914aaeb51157 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4d515c2146650678da7c1dca42fd914aaeb51157
Author: Colin Walters <[email protected]> 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 <[email protected]> --- 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 _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
