* m4/libtool.m4 (_LT_LANG_CXX_CONFIG) [darwin]: Don't echo gcc -v

output during configure.
This commit is contained in:
Peter O'Gorman 2004-09-24 14:59:23 +00:00
parent ef199e55da
commit 5b5f6d0fde
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-09-24 Peter O'Gorman <peter@pogma.com>
* m4/libtool.m4 (_LT_LANG_CXX_CONFIG) [darwin]: Don't echo gcc -v
output during configure.
2004-09-24 Gary V. Vaughan <gary@gnu.org>
* m4/libtool.m4 (_LT_DECL_EGREP): Only the newest CVS autoconf

2
m4/libtool.m4 vendored
View File

@ -4765,7 +4765,7 @@ if test "$caught_CXX_error" != yes; then
case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
10.[[0123]])
# only use -single_module on bona fide Apple compilers.
if ($CC -v) && $CC -v 2>&1| grep Apple 2>&1 >/dev/null ; then
if ($CC -v) 2>&1 >/dev/null && $CC -v 2>&1| grep Apple 2>&1 >/dev/null ; then
if $CC -dumpspecs 2>&1 | $GREP 'single_module' >/dev/null ; then
lt_int_apple_cc_single_mod=yes
fi