* libtool.m4 (ac_cv_sys_symbol_underscore): `test a == b' doesn't

work, use `test a = b' instead
This commit is contained in:
Alexandre Oliva 1998-12-04 23:21:52 +00:00 committed by Alexandre Oliva
parent 94e3a3decd
commit 5612a7ec93
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
1998-12-04 Alexandre Oliva <oliva@dcc.unicamp.br>
* 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

2
libtool.m4 vendored
View File

@ -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