From 4fa35c3207c886f7ff981e81ec06dd6e28acff2d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 16 Nov 2012 13:28:15 -0500 Subject: [PATCH] autogen.sh: Honor NOCONFIGURE=1 See http://people.gnome.org/~walters/docs/build-api.txt --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 672f6f4..6948a79 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,4 +7,6 @@ intltoolize -c -f || exit 1 libtoolize -c || exit 1 autoconf || exit 1 automake -a -c || exit 1 -./configure $* +if test -z "$NOCONFIGURE"; then + ./configure $* +fi