From: Gary V. Vaughan Date: Wed, 27 Aug 2003 14:56:07 +0000 (+0000) Subject: Work around a bug in AU_ALIAS in CVS Autoconf that inserts a X-Git-Tag: help~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09e4e0413838a676bdb908eb3a537437faaf0d1e;p=thirdparty%2Flibtool.git Work around a bug in AU_ALIAS in CVS Autoconf that inserts a newline just before AC_FD_CC, by hand updating: * ltdl.m4 (AC_LTDL_SYMBOL_USCORE): s/AC_FD_CC/AS_MESSAGE_LOG_FD/g. --- diff --git a/ChangeLog b/ChangeLog index 97d406959..e63252197 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-08-27 Gary V. Vaughan + + Work around a bug in AU_ALIAS in CVS Autoconf that inserts a + newline just before AC_FD_CC, by hand updating: + + * ltdl.m4 (AC_LTDL_SYMBOL_USCORE): s/AC_FD_CC/AS_MESSAGE_LOG_FD/g. + 2003-08-05 Jim Pick , Ito Kazumitsu , Gary V. Vaughan diff --git a/ltdl.m4 b/ltdl.m4 index d7c1f41df..8e40ed8d9 100644 --- a/ltdl.m4 +++ b/ltdl.m4 @@ -377,15 +377,15 @@ EOF if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then : else - echo "configure: cannot find nm_test_func in $ac_nlist" >&AC_FD_CC + echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD fi fi else - echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC + echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else - echo "configure: failed program was:" >&AC_FD_CC - cat conftest.c >&AC_FD_CC + echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.c >&AS_MESSAGE_LOG_FD fi rm -rf conftest* ])