* tests/remake-am-pr10111.test: Avoid using `#' comments in
makefile recipes, as these have been confusing FreeBSD make.
The failure was masked by the fact that this test is currently
expected to fail.
Suggested by a report from Bruno Haible.
+2011-12-16 Stefano Lattarini <stefano.lattarini@gmail.com>
+
+ tests: fix a minor spurious failure with FreeBSD make
+ * tests/remake-am-pr10111.test: Avoid using `#' comments in
+ makefile recipes, as these have been confusing FreeBSD make.
+ The failure was masked by the fact that this test is currently
+ expected to fail.
+ Suggested by a report from Bruno Haible.
+
2011-12-16 Stefano Lattarini <stefano.lattarini@gmail.com>
tests: make two test scripts executable
cat > Makefile.am <<'END'
include $(srcdir)/foobar.am
$(srcdir)/foobar.am:
-## Creative quoting to avoid spurious matches in the grepping
+## Creative quoting is to avoid spurious matches in the grepping
## of Makefile.in, later.
- echo '#' 'foobar' 'was 'here' '#' > $@
+ echo "mu =" foobar "was here =" > $@
END
$ACLOCAL
# included by configure.in works also in VPATH builds.
rm -f ../foobar.am
$MAKE
-grep '# foobar was here #' ../Makefile.in
+grep '= foobar was here =' ../Makefile.in
$MAKE distcheck
: