]> git.donarmstrong.com Git - debhelper.git/commitdiff
r580: * Fixed dh_installcatalog's references to itself on man page.
authorjoey <joey>
Mon, 24 Mar 2003 05:17:47 +0000 (05:17 +0000)
committerjoey <joey>
Mon, 24 Mar 2003 05:17:47 +0000 (05:17 +0000)
Closes: #184411
   * dh_installdebconf: Set umask to sane before running po2debconf or
     debconf-mergetemplates

debian/changelog
debian/control
debian/rules
dh_installdebconf

index a3dbacf4048487ccce85d8ef259da4b7df61f14d..c97f464ba17cad3d64c1965fb829dc93e1d2a5c7 100644 (file)
@@ -1,10 +1,11 @@
 debhelper (4.1.38) unstable; urgency=low
 
-UNRE
   * Fixed dh_installcatalog's references to itself on man page.
     Closes: #184411
+  * dh_installdebconf: Set umask to sane before running po2debconf or
+    debconf-mergetemplates
 
- -- Joey Hess <joeyh@debian.org>  Thu, 13 Mar 2003 10:51:54 -0500
+ -- Joey Hess <joeyh@debian.org>  Sun, 23 Mar 2003 21:17:09 -0800
 
 debhelper (4.1.37) unstable; urgency=low
 
index a699d7282136acc8c5061391010c2b8396e7e28d..4b4f780c8d741b2d062696a517e711211f439a51 100644 (file)
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@debian.org>
 Build-Depends-Indep: perl (>= 5.6.1), coreutils | fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.9.0)
-Standards-Version: 3.5.8.0
+Standards-Version: 3.5.9.0
 
 Package: debhelper
 Architecture: all
index 8d3cf5d5d6fc3a5e218ee351f200a03adce32262..204cb5a15a4f84048e9d4d5fde3fe77eae14e226 100755 (executable)
@@ -88,9 +88,10 @@ binary-indep: build
 
 # Update the debhelper web page. Not intended for use by anyone except the
 # author.
+DIR=/home/web/kitenet.net/programs/debhelper
 installhook:
-       cp debian/changelog /home/pub/programs/debhelper/CHANGES
-       echo -n $(VERSION) > /home/pub/programs/debhelper/LATEST-VERSION-IS
+       cp debian/changelog $(DIR)/CHANGES
+       echo -n $(VERSION) > $(DIR)/LATEST-VERSION-IS
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary dist
index fc81d1fea345eb283442fd893c625c7bb43658de..c9c72b2ab110c84dc273dbac8f7b802f26044bea 100755 (executable)
@@ -92,6 +92,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                # Are there old-style translated templates?
                my @trans=(glob("$templates.??"), glob("$templates.??_??"));
 
+               umask(0022); # since I do a redirect below
+               
                # Look for po directory.
                if (-d "debian/po") {
                        if (@trans) {