summaryrefslogtreecommitdiff
path: root/tests/backcompat.test
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2011-07-16 10:04:58 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2011-07-16 12:32:52 +0200
commit75eb16857bc94aae196be1d74a2eaf9a6a822347 (patch)
tree789c894da261d14cf9e62238920b000b948f5ba0 /tests/backcompat.test
parent650d3ec9072dc8cc1d5169db0cb7b63a9d9c0b40 (diff)
downloadautomake-75eb16857bc94aae196be1d74a2eaf9a6a822347.tar.gz
tests: avoid '##'-style comments inside recipe commands
* tests/autodist.test: Do not whitespace-indent `##' comments when they are embedded in a makefile rule: having them indented is not part of the Automake API, and might cause failures with e.g., Tru64 make. * tests/autodist-subdir.test: Likewise. * tests/backcompat.test: Likewise. * tests/backcompat6.test: Likewise. * tests/colon7.test: Likewise. * tests/posixsubst-scripts.test: Likewise. * tests/posixsubst-sources.test: Likewise.
Diffstat (limited to 'tests/backcompat.test')
-rwxr-xr-xtests/backcompat.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/backcompat.test b/tests/backcompat.test
index 9ef4d4ce2..9d748f7f6 100755
--- a/tests/backcompat.test
+++ b/tests/backcompat.test
@@ -24,11 +24,11 @@ cat > Makefile.am <<'END'
## Might be useful for debugging.
display:
- ## The following should be substituted by AM_INIT_AUTOMAKE.
+## The following should be substituted by AM_INIT_AUTOMAKE.
@echo PACKAGE = $(PACKAGE)
@echo VERSION = $(VERSION)
- ## The following should not be substituted, as we used the
- ## old form of AC_INIT.
+## The following should not be substituted, as we used the
+## old form of AC_INIT.
@echo PACKAGE_NAME = $(PACKAGE_NAME)
@echo PACKAGE_VERSION = $(PACKAGE_VERSION)
@echo PACKAGE_TARNAME = $(PACKAGE_TARNAME)