]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Fix potential regressions in depcomp{3,5}.test.
authorStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 18 Aug 2010 12:39:59 +0000 (14:39 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 18 Aug 2010 21:31:32 +0000 (23:31 +0200)
* tests/depcomp3.test: Do not uselessly escape the character `$'
in makefile rules, when it's used to expand a make macro.
* tests/depcomp5.test: Likewise.

ChangeLog
tests/depcomp3.test
tests/depcomp5.test

index f13d3e831eadeb456f5d173c749fce7fbe410f35..cada0df5e1b3037dd6d6c7e73c9cbc286e7aa44a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-08-18  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       Fix potential regressions in depcomp{3,5}.test.
+       * tests/depcomp3.test: Do not uselessly escape the character `$'
+       in makefile rules, when it's used to expand a make macro.
+       * tests/depcomp5.test: Likewise.
+
 2010-08-08  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        Minor improvements and fixes in tests `depcomp*.test'.
index 513a01d54c131f2718fbc1d26a268665d806fec2..649fada3418eeb3b886192ce77c2357837b84df1 100755 (executable)
@@ -34,7 +34,7 @@ prg_SOURCES = src/sub.c src/foo.h
 
 .PHONY: grepdeps
 grepdeps:
-       grep 'src/sub\.\$(OBJEXT).*:' src/$(DEPDIR)/sub.Po
+       grep 'src/sub\.$(OBJEXT).*:' src/$(DEPDIR)/sub.Po
 
 END
 
index 9a4e1b1489989277a9ed39918e6dc17df185de25..4fe7e1689b871ec2026a7f0decc866c408a5da9e 100755 (executable)
@@ -42,7 +42,7 @@ prg_SOURCES = src/sub.c src/foo.h
 
 .PHONY: grepdeps
 grepdeps:
-       grep 'src/sub\.\$(OBJEXT).*:' src/$(DEPDIR)/sub.Po
+       grep 'src/sub\.$(OBJEXT).*:' src/$(DEPDIR)/sub.Po
 
 END