From: joey Date: Tue, 28 Jun 2005 21:47:20 +0000 (+0000) Subject: r1770: releasing version 4.9.3 X-Git-Tag: 4.9.3^0 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8cbd10d36265438420d16cf1fea470c37bfb0fb2;p=debhelper.git r1770: releasing version 4.9.3 --- diff --git a/autoscripts/postrm-modules b/autoscripts/postrm-modules index 804f632..45d65be 100644 --- a/autoscripts/postrm-modules +++ b/autoscripts/postrm-modules @@ -1,3 +1,3 @@ if [ -x /sbin/update-modules ]; then - update-modules >/dev/null || [ "$?" = 3] + update-modules >/dev/null || [ "$?" = 3 ] fi diff --git a/debian/changelog b/debian/changelog index c3cfac1..65eb832 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (4.9.3) unstable; urgency=high + + * Fix typo in postrm-modules fragment. Closes: #316069 + Recommend any dh_installmodules users rebuild ASAP. + + -- Joey Hess Tue, 28 Jun 2005 17:41:51 -0400 + debhelper (4.9.2) unstable; urgency=low * Fix typo in dh_install example. Closes: #314964 diff --git a/debian/rules b/debian/rules index dbd7bf6..0258cfe 100755 --- a/debian/rules +++ b/debian/rules @@ -33,10 +33,10 @@ POD2MAN=pod2man -c Debhelper -r "$(VERSION)" build: test build-stamp build-stamp: # Build all the man pages. - find . -type f -perm +100 -maxdepth 1 -name "dh_*" \ + find . -maxdepth 1 -type f -perm +100 -name "dh_*" \ -exec $(POD2MAN) {} {}.1 \; $(POD2MAN) --section=7 debhelper.pod | \ - $(MAKEMANLIST) `find . -type f -perm +100 -maxdepth 1 -name "dh_*" | sort` > debhelper.7 + $(MAKEMANLIST) `find . -maxdepth 1 -type f -perm +100 -name "dh_*" | sort` > debhelper.7 # Translated pages. set -e; \ for dir in man/*; do \