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.
This commit is contained in:
Christian Heimes 2013-11-20 01:18:26 +01:00
parent 0bedc973ba
commit fe32aec25a
2 changed files with 4 additions and 4 deletions

6
configure vendored
View File

@ -4803,16 +4803,16 @@ fi
fi fi
if test "$preset_cxx" != "$CXX" if test "$preset_cxx" != "$CXX"
then 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\". By default, distutils will build C++ extension modules with \"$CXX\".
If this is not intended, then set CXX on the configure command line. If this is not intended, then set CXX on the configure command line.
" >&5 " >&5
$as_echo "$as_me: WARNING: $as_echo "$as_me:
By default, distutils will build C++ extension modules with \"$CXX\". By default, distutils will build C++ extension modules with \"$CXX\".
If this is not intended, then set CXX on the configure command line. If this is not intended, then set CXX on the configure command line.
" >&2;} " >&6;}
fi fi

View File

@ -693,7 +693,7 @@ then
fi fi
if test "$preset_cxx" != "$CXX" if test "$preset_cxx" != "$CXX"
then then
AC_MSG_WARN([ AC_MSG_NOTICE([
By default, distutils will build C++ extension modules with "$CXX". By default, distutils will build C++ extension modules with "$CXX".
If this is not intended, then set CXX on the configure command line. If this is not intended, then set CXX on the configure command line.