diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-04-29 12:22:21 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-04-29 12:22:21 -0400 |
commit | 617de01c66fd7b7860acda68331c8125cc9f914c (patch) | |
tree | 0050520e1fba70533c107265ecebbc4fdefacf84 /Makefile | |
parent | 8627c82cf2a2432334270b817f14340c0e6b423e (diff) | |
download | debhelper-617de01c66fd7b7860acda68331c8125cc9f914c.tar.gz |
Fix underescaped $ in Makefile. Closes: #478475
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |