From bf260bc146ad0c2248e6f567510505c5fe8ddca3 Mon Sep 17 00:00:00 2001 From: Hubert Figuière Date: Sun, 21 Aug 2016 22:24:02 -0400 Subject: Bug 97366 - Also don't show the message if we have NOCONFIGURE=1 --- autogen.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index 148da86..857cffc 100755 --- a/autogen.sh +++ b/autogen.sh @@ -38,13 +38,13 @@ $AUTOCONF cd $builddir -if test -z "$*"; then + +if [ ! $NOCONFIGURE == "1" ]; then + if test -z "$*"; then echo "I am going to run ./configure with --enable-maintainer-mode" echo "If you wish to pass any to it, please specify them on " echo "the $0 command line." -fi - -if [ ! $NOCONFIGURE == "1" ]; then - echo "Running configure..." - $topsrcdir/configure --enable-maintainer-mode "$@" + fi + echo "Running configure..." + $topsrcdir/configure --enable-maintainer-mode "$@" fi -- cgit v1.2.3