From: Alexandre Oliva Date: Fri, 4 Dec 1998 23:21:52 +0000 (+0000) Subject: * libtool.m4 (ac_cv_sys_symbol_underscore): `test a == b' doesn't X-Git-Tag: release-1-2d~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5612a7ec93fa8300e9db33162dc9cb3075395446;p=thirdparty%2Flibtool.git * libtool.m4 (ac_cv_sys_symbol_underscore): `test a == b' doesn't work, use `test a = b' instead --- diff --git a/ChangeLog b/ChangeLog index 5adf8e35a..08b103737 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-12-04 Alexandre Oliva + * libtool.m4 (ac_cv_sys_symbol_underscore): `test a == b' doesn't + work, use `test a = b' instead + * Makefile.am (mdemo_distfiles): libfoo[12].sym no longer exist * ltconfig.in (solaris): do not use $CC for linking if GNU ld is diff --git a/libtool.m4 b/libtool.m4 index 7a0e1d981..8ce50126e 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -536,7 +536,7 @@ fi rm -rf conftest* ]) AC_MSG_RESULT($ac_cv_sys_symbol_underscore) -if test x$ac_cv_sys_symbol_underscore == xyes; then +if test x$ac_cv_sys_symbol_underscore = xyes; then AC_DEFINE(WITH_SYMBOL_UNDERSCORE,1, [define if compiled symbols have a leading underscore]) fi