Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe32aec

Browse files
committed
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.
1 parent 0bedc97 commit fe32aec

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4803,16 +4803,16 @@ fi
48034803
fi
48044804
if test "$preset_cxx" != "$CXX"
48054805
then
4806-
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
4806+
{ $as_echo "$as_me:${as_lineno-$LINENO}:
48074807
48084808
By default, distutils will build C++ extension modules with \"$CXX\".
48094809
If this is not intended, then set CXX on the configure command line.
48104810
" >&5
4811-
$as_echo "$as_me: WARNING:
4811+
$as_echo "$as_me:
48124812
48134813
By default, distutils will build C++ extension modules with \"$CXX\".
48144814
If this is not intended, then set CXX on the configure command line.
4815-
" >&2;}
4815+
" >&6;}
48164816
fi
48174817

48184818

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ then
693693
fi
694694
if test "$preset_cxx" != "$CXX"
695695
then
696-
AC_MSG_WARN([
696+
AC_MSG_NOTICE([
697697
698698
By default, distutils will build C++ extension modules with "$CXX".
699699
If this is not intended, then set CXX on the configure command line.

0 commit comments

Comments
 (0)