in a shell script is not portable. Use '=' instead.
+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
## 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,