From: Christian Heimes Date: Wed, 20 Nov 2013 00:18:26 +0000 (+0100) Subject: configure: use AC_MSG_NOTICE() instead of AC_MSG_WARN() to inform user about C++... X-Git-Tag: v3.4.0b1~165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe32aec25a8b36498d840bd69485e9bc94195b9c;p=thirdparty%2FPython%2Fcpython.git configure: use AC_MSG_NOTICE() instead of AC_MSG_WARN() to inform user about C++ compiler. Now './configure --silent && make -s' doesn't print any message to stdout or stderr. --- diff --git a/configure b/configure index e82fe760edb1..225e8a4cc8df 100755 --- a/configure +++ b/configure @@ -4803,16 +4803,16 @@ fi fi if test "$preset_cxx" != "$CXX" then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: + { $as_echo "$as_me:${as_lineno-$LINENO}: By default, distutils will build C++ extension modules with \"$CXX\". If this is not intended, then set CXX on the configure command line. " >&5 -$as_echo "$as_me: WARNING: +$as_echo "$as_me: By default, distutils will build C++ extension modules with \"$CXX\". If this is not intended, then set CXX on the configure command line. - " >&2;} + " >&6;} fi diff --git a/configure.ac b/configure.ac index 628b8f8c6b1a..369c7e5c4a08 100644 --- a/configure.ac +++ b/configure.ac @@ -693,7 +693,7 @@ then fi if test "$preset_cxx" != "$CXX" then - AC_MSG_WARN([ + AC_MSG_NOTICE([ By default, distutils will build C++ extension modules with "$CXX". If this is not intended, then set CXX on the configure command line.