From bb06f998b204c42bc0711714a3978c9a9e42abc6 Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Mon, 28 Jan 2013 12:38:04 -0500 Subject: [PATCH] Ape gnome-autogen's use of NOCONFIGURE to control whether ./autogen.sh runs ./configure or not --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 77900f60..b08190da 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,4 +8,6 @@ aclocal autoconf autoheader automake --add-missing --copy --foreign -./configure $@ +if [ -z "$NOCONFIGURE" ]; then + ./configure $@ +fi -- 2.39.2