From: Albert Chin-A-Young Date: Sun, 5 Sep 2004 23:59:39 +0000 (+0000) Subject: * Makefile.am (clean-ltmain-sh): Using '==' to test for equality X-Git-Tag: release-1-9d~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb9e30ad0e2304d6aa2c4c2f95cacbac70b738b6;p=thirdparty%2Flibtool.git * Makefile.am (clean-ltmain-sh): Using '==' to test for equality in a shell script is not portable. Use '=' instead. --- diff --git a/ChangeLog b/ChangeLog index c505cf30a..17d5f8487 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-09-06 Albert Chin-A-Young + + * Makefile.am (clean-ltmain-sh): Using '==' to test for equality + in a shell script is not portable. Use '=' instead. + 2004-09-05 Andreas Schwab * m4/ltdl.m4 (LT_WITH_LTDL): Remove excess quoting in argument of diff --git a/Makefile.am b/Makefile.am index f64dd8870..b911b2bcd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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,