From: joey Date: Sat, 12 May 2001 16:26:19 +0000 (+0000) Subject: r466: * Corrected bashism (echo -e, DAMNIT), in rules file that resulted in a X-Git-Tag: version_2.0.101~133 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=625338331a19fff4be0d0e70f3ea19fbc5630d4e;p=debhelper.git r466: * Corrected bashism (echo -e, DAMNIT), in rules file that resulted in a corrupted Dh_Version.pm. Closes: #97236 --- diff --git a/debian/changelog b/debian/changelog index 027f3fa..fc067da 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (3.0.21) unstable; urgency=low + + * Corrected bashism (echo -e, DAMNIT), in rules file that resulted in a + corrupted Dh_Version.pm. Closes: #97236 + + -- Joey Hess Sat, 12 May 2001 12:21:40 -0400 + debhelper (3.0.20) unstable; urgency=low * Modified the postrm fragment for dh_installxfonts to not try to delete diff --git a/debian/rules b/debian/rules index 8302555..bc83ec5 100755 --- a/debian/rules +++ b/debian/rules @@ -75,7 +75,7 @@ binary-indep: build ./dh_installdirs usr/bin usr/share/debhelper \ $(PERLLIBDIR)/Debian/Debhelper - echo -e "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';" > \ + printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';" > \ debian/debhelper/$(PERLLIBDIR)/Debian/Debhelper/Dh_Version.pm find . -perm +111 -maxdepth 1 -type f -not -name "*.pl" \