From: Pavel Roskin Date: Wed, 9 Jun 1999 12:09:26 +0000 (+0000) Subject: * ltconfig.in (exeext): Use quotes in the test, to prevent a X-Git-Tag: release-1-3b~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7647cf39913fd86bf76fe63214385af505239b5;p=thirdparty%2Flibtool.git * ltconfig.in (exeext): Use quotes in the test, to prevent a failure in sh.test. --- diff --git a/ChangeLog b/ChangeLog index b5048fa8f..f59eccca2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-06-09 Pavel Roskin + + * ltconfig.in (exeext): Use quotes in the test, to prevent a + failure in sh.test. + 1999-06-09 Gary V. Vaughan * ltconfig.in: Reordered tests to be more like configure.in's diff --git a/ltconfig.in b/ltconfig.in index fde015b88..50802f67d 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1072,7 +1072,7 @@ else $rm conftest* fi # Belt *and* braces to stop my trousers falling down: - if test X$ac_cv_prog_cc_pic_works = Xno; then + if test "X$ac_cv_prog_cc_pic_works" = Xno; then ac_cv_prog_cc_pic= ac_cv_prog_cc_can_build_shared=no fi @@ -1108,7 +1108,7 @@ else $rm conftest* fi # Belt *and* braces to stop my trousers falling down: -if test X$ac_cv_prog_cc_static_works = Xno; then +if test "X$ac_cv_prog_cc_static_works" = Xno; then ac_cv_prog_cc_static= fi echo "$ac_t""$ac_cv_prog_cc_static_works" 1>&6