From 4d515c2146650678da7c1dca42fd914aaeb51157 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sat, 17 Sep 2011 11:21:30 -0400 Subject: autogen.sh: Honor NOCONFIGURE environment variable See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Dave Airlie --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.1