From 17d5f4dc3102038a6651a7d9ee9091d05f7ffef2 Mon Sep 17 00:00:00 2001 From: Idar Tollefsen Date: Sun, 1 Jan 2012 16:32:27 +0100 Subject: [PATCH] build: don't output configure options via autogen if $NOCONFIGURE is set https://bugzilla.gnome.org/show_bug.cgi?id=667296 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index c0cd19e54c..fcf1ed50ad 100755 --- a/autogen.sh +++ b/autogen.sh @@ -56,7 +56,7 @@ autoheader_check || DIE=1 die_check $DIE # if no arguments specified then this will be printed -if test -z "$*"; then +if test -z "$*" && test -z "$NOCONFIGURE"; then echo "+ checking for autogen.sh options" echo " This autogen script will automatically run ./configure as:" echo " ./configure $CONFIGURE_DEF_OPT"