summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorjoey <joey>2003-04-06 18:33:01 +0000
committerjoey <joey>2003-04-06 18:33:01 +0000
commitdfc48628ab06f010bb18454d5d8e8701b1bcf58a (patch)
tree3c33ca1a30d1776d37e2dca103c62ba23d81d8b4 /debian
parentad0b88983934d9daa702a7416cfab8cf768a54d1 (diff)
r582: * Fix build with 077 umask. Closes: #187757
* Allow colons between multiple items in DH_ALWAYS_EXCLUDE.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules4
2 files changed, 9 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index d2d11453..2222d3d8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+debhelper (4.1.40) unstable; urgency=low
+
+ * Fix build with 077 umask. Closes: #187757
+ * Allow colons between multiple items in DH_ALWAYS_EXCLUDE.
+
+ -- Joey Hess <joeyh@debian.org> Sun, 6 Apr 2003 14:30:48 -0400
+
debhelper (4.1.39) unstable; urgency=low
* Add calls to dh_installcatalogs to example rules files. Closes: #186819
diff --git a/debian/rules b/debian/rules
index 204cb5a1..ffb2c9ba 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,9 +39,9 @@ build-stamp:
s/#LIST#/$$collect/; \
print; \
}; \
- }' `find . -type f -perm +1 -maxdepth 1 -name "dh_*" | sort` > debhelper.7
+ }' `find . -type f -perm +100 -maxdepth 1 -name "dh_*" | sort` > debhelper.7
# Turn all executables into man pages.
- find . -type f -perm +1 -maxdepth 1 -name "dh_*" \
+ find . -type f -perm +100 -maxdepth 1 -name "dh_*" \
-exec pod2man -c Debhelper -r "$(VERSION)" {} {}.1 \;
printf "package Debian::Debhelper::Dh_Version;\n\$$version='$(VERSION)';" > \
Debian/Debhelper/Dh_Version.pm