[Python-checkins] cpython (merge 3.3 -> default): configure: echo message to AS_MESSAGE_FD. --silent redirects fd to /dev/null.

christian.heimes python-checkins at python.org
Wed Nov 20 01:12:35 CET 2013


http://hg.python.org/cpython/rev/c9731d508785
changeset:   87286:c9731d508785
parent:      87284:5645792a524f
parent:      87285:5517027519a4
user:        Christian Heimes <christian at cheimes.de>
date:        Wed Nov 20 01:11:33 2013 +0100
summary:
  configure: echo message to AS_MESSAGE_FD. --silent redirects fd to /dev/null.

files:
  configure    |  6 +++---
  configure.ac |  6 +++---
  2 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -16530,19 +16530,19 @@
 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
--- a/configure.ac
+++ b/configure.ac
@@ -4698,19 +4698,19 @@
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list