From e7b32d15de1b8206da3b2a31cbaa0ef2cc32028c Mon Sep 17 00:00:00 2001 From: Giovanni Campagna <<gcampagna@src.gnome.org>> Date: Sat, 5 Jan 2013 18:25:17 +0100 Subject: [PATCH] build: support GNOME Build API By not running configure if not instructed to do so. https://bugzilla.gnome.org/show_bug.cgi?id=691504 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 28a5a89..7bfd3ac 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,4 +3,4 @@ mkdir -p m4 autopoint --force git submodule update --init --recursive AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv -Wall || exit -./configure --enable-maintainer-mode "$@" +test -n "$NOCONFIGURE" || ./configure --enable-maintainer-mode "$@"