From 2919755b1a1e1d22fa78d0610a45092b45e42af1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 23 Sep 2012 14:19:15 -0400 Subject: [PATCH] autogen: 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 326c76a..5f0957b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -42,4 +42,6 @@ gtkdocize || exit 1 && "${AUTOMAKE}" --add-missing \ && "${AUTOCONF}" -$(dirname "${0}")/configure "$@" +if test -z "$NOCONFIGURE"; then + exec $(dirname "${0}")/configure "$@" +fi -- 1.7.11.4