The attached patch fix a potential regression in a couple of tests,
introduced my recent patch "Minor improvements and fixes in tests 
`depcomp*.test'."

OK to push to maint ASAP?

Regards,
  Stefano
From 260e5422067b12b966f00038c1db76b1d562b405 Mon Sep 17 00:00:00 2001
From: Stefano Lattarini <stefano.lattar...@gmail.com>
Date: Wed, 18 Aug 2010 14:39:59 +0200
Subject: [PATCH] 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.
---
 ChangeLog           |    7 +++++++
 tests/depcomp3.test |    2 +-
 tests/depcomp5.test |    2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9a13907..934eba6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-08-18  Stefano Lattarini  <stefano.lattar...@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-17  Stefano Lattarini  <stefano.lattar...@gmail.com>
 	    Ralf Wildenhues  <ralf.wildenh...@gmx.de>
 
diff --git a/tests/depcomp3.test b/tests/depcomp3.test
index 513a01d..649fada 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 9a4e1b1..4fe7e16 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
 
-- 
1.7.1

Reply via email to