summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-20 01:11:33 +0100
committerChristian Heimes <christian@cheimes.de>2013-11-20 01:11:33 +0100
commit0bedc973ba8be0ad6ef912eeaa9657fbeae9c7e2 (patch)
tree9abb5bb58ce553dcfdba7722db06fbb8a47116f5
parent888dcc32cd8bb0d5169c461468a405004781811c (diff)
parent75ed890de57cc059592b4bfafa87eff2863b2122 (diff)
downloadcpython-git-0bedc973ba8be0ad6ef912eeaa9657fbeae9c7e2.tar.gz
configure: echo message to AS_MESSAGE_FD. --silent redirects fd to /dev/null.
-rwxr-xr-xconfigure6
-rw-r--r--configure.ac6
2 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index fb1404f883..e82fe760ed 100755
--- a/configure
+++ b/configure
@@ -16530,19 +16530,19 @@ $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
-echo "creating Modules/Setup"
+echo "creating Modules/Setup" >&6
if test ! -f Modules/Setup
then
cp $srcdir/Modules/Setup.dist Modules/Setup
fi
-echo "creating Modules/Setup.local"
+echo "creating Modules/Setup.local" >&6
if test ! -f Modules/Setup.local
then
echo "# Edit this file for local setup changes" >Modules/Setup.local
fi
-echo "creating Makefile"
+echo "creating Makefile" >&6
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
-s Modules Modules/Setup.config \
Modules/Setup.local Modules/Setup
diff --git a/configure.ac b/configure.ac
index d814581383..628b8f8c6b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4698,19 +4698,19 @@ AC_CONFIG_FILES(Makefile.pre Modules/Setup.config Misc/python.pc Misc/python-con
AC_CONFIG_FILES([Modules/ld_so_aix], [chmod +x Modules/ld_so_aix])
AC_OUTPUT
-echo "creating Modules/Setup"
+echo "creating Modules/Setup" >&AS_MESSAGE_FD
if test ! -f Modules/Setup
then
cp $srcdir/Modules/Setup.dist Modules/Setup
fi
-echo "creating Modules/Setup.local"
+echo "creating Modules/Setup.local" >&AS_MESSAGE_FD
if test ! -f Modules/Setup.local
then
echo "# Edit this file for local setup changes" >Modules/Setup.local
fi
-echo "creating Makefile"
+echo "creating Makefile" >&AS_MESSAGE_FD
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
-s Modules Modules/Setup.config \
Modules/Setup.local Modules/Setup