summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey>2001-05-12 16:26:19 +0000
committerjoey <joey>2001-05-12 16:26:19 +0000
commit625338331a19fff4be0d0e70f3ea19fbc5630d4e (patch)
tree95392552d878f804d1b5f9f16fe8eddfb9fb5864
parent7b068400acb737a64e1f8e5c6b23d72b8dd5c1eb (diff)
r466: * Corrected bashism (echo -e, DAMNIT), in rules file that resulted in a
corrupted Dh_Version.pm. Closes: #97236
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 027f3fac..fc067da6 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 <joeyh@debian.org> 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 8302555c..bc83ec50 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" \