[Python-checkins] cpython (merge 3.6 -> default): Write configure message to AS_MESSAGE_FD

christian.heimes python-checkins at python.org
Sat Sep 24 06:34:38 EDT 2016


https://hg.python.org/cpython/rev/3b608f150f5f
changeset:   104050:3b608f150f5f
parent:      104048:144a2bf27dbe
parent:      104049:b0c56ee58478
user:        Christian Heimes <christian at python.org>
date:        Sat Sep 24 12:34:31 2016 +0200
summary:
  Write configure message to AS_MESSAGE_FD

files:
  aclocal.m4   |  4 ++--
  configure    |  2 +-
  configure.ac |  2 +-
  3 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/aclocal.m4 b/aclocal.m4
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -13,7 +13,7 @@
 
 m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
 dnl pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
-dnl serial 11 (pkg-config-0.29.1)
+dnl serial 11 (pkg-config-0.29)
 dnl
 dnl Copyright © 2004 Scott James Remnant <scott at netsplit.com>.
 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists at gmail.com>
@@ -55,7 +55,7 @@
 dnl See the "Since" comment for each macro you use to see what version
 dnl of the macros you require.
 m4_defun([PKG_PREREQ],
-[m4_define([PKG_MACROS_VERSION], [0.29.1])
+[m4_define([PKG_MACROS_VERSION], [0.29])
 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
     [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
 ])dnl PKG_PREREQ
diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -17876,7 +17876,7 @@
 if test "$Py_OPT" = 'false' -a "$Py_DEBUG" != 'true'; then
     echo "" >&6
     echo "" >&6
-    echo "If you want a release build with all optimizations active (LTO, PGO, etc),"
+    echo "If you want a release build with all optimizations active (LTO, PGO, etc)," >&6
     echo "please run ./configure --with-optimizations" >&6
     echo "" >&6
     echo "" >&6
diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -5396,7 +5396,7 @@
 if test "$Py_OPT" = 'false' -a "$Py_DEBUG" != 'true'; then
     echo "" >&AS_MESSAGE_FD
     echo "" >&AS_MESSAGE_FD
-    echo "If you want a release build with all optimizations active (LTO, PGO, etc),"
+    echo "If you want a release build with all optimizations active (LTO, PGO, etc)," >&AS_MESSAGE_FD
     echo "please run ./configure --with-optimizations" >&AS_MESSAGE_FD
     echo "" >&AS_MESSAGE_FD
     echo "" >&AS_MESSAGE_FD

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


More information about the Python-checkins mailing list