]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* Makefile.am (clean-ltmain-sh): Using '==' to test for equality
authorAlbert Chin-A-Young <china@thewrittenword.com>
Sun, 5 Sep 2004 23:59:39 +0000 (23:59 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sun, 5 Sep 2004 23:59:39 +0000 (23:59 +0000)
in a shell script is not portable. Use '=' instead.

ChangeLog
Makefile.am

index c505cf30a05839eab91cc4e1144e35a653dc33e2..17d5f848762e9106619b90aaca257c9eeb5ac49b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-06  Albert Chin-A-Young  <china@thewrittenword.com>
+
+       * Makefile.am (clean-ltmain-sh): Using '==' to test for equality
+       in a shell script is not portable. Use '=' instead.
+
 2004-09-05  Andreas Schwab  <schwab@suse.de>
 
        * m4/ltdl.m4 (LT_WITH_LTDL): Remove excess quoting in argument of
index f64dd8870587eab21a343bbae87ea917fb6a6991..b911b2bcd3ad683dad0e5c79a47a9ab88b4c78c6 100644 (file)
@@ -80,7 +80,7 @@ vcl-tmp:
 ## previous builds left behind in the build tree, that would override the
 ## source tree version in current builds.
 clean-ltmain-sh:
-       @-test "$(top_srcdir)" == "$(top_builddir)" || \
+       @-test "$(top_srcdir)" = "$(top_builddir)" || \
          rm -f "$(top_builddir)/config/ltmain.sh"
 
 # We build ltversion.m4 here, instead of from config.status,