Commit e13a4151 authored by Christian Heimes's avatar Christian Heimes

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.
parent 16d17575
......@@ -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
......
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment