From: Stefano Lattarini Date: Wed, 18 Aug 2010 12:39:59 +0000 (+0200) Subject: Fix potential regressions in depcomp{3,5}.test. X-Git-Tag: v1.11.1b~58^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82f4860ab5725b8fdc3125c4f15c5fac3849bb72;p=thirdparty%2Fautomake.git 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. --- diff --git a/ChangeLog b/ChangeLog index f13d3e831..cada0df5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-08-18 Stefano Lattarini + + 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 Minor improvements and fixes in tests `depcomp*.test'. diff --git a/tests/depcomp3.test b/tests/depcomp3.test index 513a01d54..649fada34 100755 --- a/tests/depcomp3.test +++ b/tests/depcomp3.test @@ -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 diff --git a/tests/depcomp5.test b/tests/depcomp5.test index 9a4e1b148..4fe7e1689 100755 --- a/tests/depcomp5.test +++ b/tests/depcomp5.test @@ -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