From: Joey Hess <joey@kodama.kitenet.net>
Date: Tue, 29 Apr 2008 16:22:21 +0000 (-0400)
Subject: Fix underescaped $ in Makefile. Closes: #478475
X-Git-Tag: 7.0.4~3
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=617de01c66fd7b7860acda68331c8125cc9f914c;p=debhelper.git

Fix underescaped $ in Makefile. Closes: #478475
---

diff --git a/Makefile b/Makefile
index 0000994..5d64ab9 100644
--- a/Makefile
+++ b/Makefile
@@ -64,7 +64,7 @@ install:
 	install -d $(DESTDIR)/usr/bin \
 		$(DESTDIR)/usr/share/debhelper/autoscripts \
 		$(DESTDIR)$(PERLLIBDIR)
-	install $(shell find -maxdepth 1 -mindepth 1 -name dh\* |grep -v \.1\$) $(DESTDIR)/usr/bin
+	install $(shell find -maxdepth 1 -mindepth 1 -name dh\* |grep -v \.1\$$) $(DESTDIR)/usr/bin
 	install -m 0644 autoscripts/* $(DESTDIR)/usr/share/debhelper/autoscripts
 	install -m 0644 Debian/Debhelper/*.pm $(DESTDIR)$(PERLLIBDIR)
 
diff --git a/debian/changelog b/debian/changelog
index a5696ad..a75e5d1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+debhelper (7.0.4) UNRELEASED; urgency=low
+
+  * Fix underescaped $ in Makefile. Closes: #478475
+
+ -- Joey Hess <joeyh@debian.org>  Tue, 29 Apr 2008 12:22:00 -0400
+
 debhelper (7.0.3) unstable; urgency=low
 
   * dh: Fix man page typos. Closes: #477933