summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2016-08-21 22:24:02 -0400
committerHubert Figuière <hub@figuiere.net>2016-08-21 22:24:02 -0400
commitbf260bc146ad0c2248e6f567510505c5fe8ddca3 (patch)
tree322e686a4b197e7087472bd6a135a76930ac00b5 /autogen.sh
parent39cc5671e3c909cbc5c82f08693f97ccdde3d545 (diff)
Bug 97366 - Also don't show the message if we have NOCONFIGURE=1exempi-2.3-branch
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh12
1 files 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