+2010-11-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ tests: avoid '##'-style comments inside recipe commands.
+ * tests/confh.test, tests/confh8.test: Remove
+ double-hash comments from makefile rule commands, they
+ are not part of the Automake API.
+
2010-11-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
tests: work around dash quoting issue in case statements.
cat > Makefile.am << 'END'
.PHONY: test1 test2
test1:
- @echo DIST_COMMON = $(DIST_COMMON) ## for debugging
+ @echo DIST_COMMON = $(DIST_COMMON)
echo ' ' $(DIST_COMMON) ' ' | grep '[ /]acconfig\.h '
test2: distdir
- ls -l $(distdir)/* ## for debugging
+ ls -l $(distdir)/*
test -f $(distdir)/acconfig.h
check-local: test1 test2
END
cat > Makefile.am << 'END'
.PHONY: test0 test1 test2
test0:
- @echo DIST_COMMON = $(DIST_COMMON) ## for debugging
+ @echo DIST_COMMON = $(DIST_COMMON)
echo ' ' $(DIST_COMMON) ' ' | grep '[ /]one\.h\.in '
echo ' ' $(DIST_COMMON) ' ' | grep '[ /]two\.h\.in '
: Processed header files should not be distributed.
test -f one.h
test -f two.h
test2: distdir
- ls -l $(distdir)/* ## for debugging
+ ls -l $(distdir)/*
test -f $(distdir)/one.h.in
test -f $(distdir)/two.h.in
: Processed header files should not be distributed.