From e8d6b0ad09ebdcb81b2229937a982ff06c9f4394 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 18 Jan 2012 17:52:33 -0500 Subject: autogen.sh: Honor NOCONFIGURE=1 See http://people.gnome.org/~walters/docs/build-api.txt --- autogen.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index edf4db2..b49795d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,4 +8,8 @@ else gtkdocize --flavour no-tmpl || exit 1 fi -ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v -i && ./configure $@ +ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" autoreconf -v -i + +if test -z "$NOCONFIGURE"; then + exec ./configure "$@" +fi -- cgit v1.2.3