]> git.donarmstrong.com Git - debhelper.git/commitdiff
Fix underescaped $ in Makefile. Closes: #478475
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 29 Apr 2008 16:22:21 +0000 (12:22 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 29 Apr 2008 16:22:21 +0000 (12:22 -0400)
Makefile
debian/changelog

index 0000994a336bf3ea49276af2bf74508d6a0440cf..5d64ab950ae34b7bbbc8dedc6daf007bd6fe25fe 100644 (file)
--- 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)
 
index a5696ad7bdba462c9aee0989941a6fb74972dd82..a75e5d145bf2dd0794fad37eb809a4dfe741f102 100644 (file)
@@ -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