From 5612a7ec93fa8300e9db33162dc9cb3075395446 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 4 Dec 1998 23:21:52 +0000 Subject: [PATCH] * libtool.m4 (ac_cv_sys_symbol_underscore): `test a == b' doesn't work, use `test a = b' instead --- ChangeLog | 3 +++ libtool.m4 | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.2