]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (ac_cv_sys_symbol_underscore): `test a == b' doesn't
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Fri, 4 Dec 1998 23:21:52 +0000 (23:21 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Fri, 4 Dec 1998 23:21:52 +0000 (23:21 +0000)
  work, use `test a = b' instead

ChangeLog
libtool.m4

index 5adf8e35a9b6a12d04a13777ba2e1980090c6706..08b1037374768f1bdd7510381b104878a66d81ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 7a0e1d981af951f05f94857a44252dc0e3ca2fb0..8ce50126e3861d25b6a91f9d6313ab3abe562503 100644 (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