]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1965: * dh_fixperms: Change a chmod +x to chmod a+x, to avoid the umask
authorjoeyh <joeyh>
Tue, 26 Dec 2006 21:28:05 +0000 (21:28 +0000)
committerjoeyh <joeyh>
Tue, 26 Dec 2006 21:28:05 +0000 (21:28 +0000)
  influencing it.

debian/changelog
dh_fixperms

index 2a4161168a6d92f38668ed545abb66f46fff8a40..2660c0ec4551214b206a99d473c4c40455062629 100644 (file)
@@ -5,8 +5,10 @@ debhelper (5.0.43) UNRELEASED; urgency=low
 
   [ Joey Hess ]
   * Typo. Closes: #400571
+  * dh_fixperms: Change a chmod +x to chmod a+x, to avoid the umask
+    influencing it.
 
- -- Joey Hess <joeyh@debian.org>  Mon, 27 Nov 2006 12:17:29 -0500
+ -- Joey Hess <joeyh@debian.org>  Tue, 26 Dec 2006 16:26:57 -0500
 
 debhelper (5.0.42) unstable; urgency=low
 
index 775ab55e131428cae372fa13bb04e6c3ccda35a0..a96b1e05cc34502443e752743fd29779da950f6e 100755 (executable)
@@ -91,7 +91,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                for my $dir (qw{usr/bin bin usr/sbin sbin usr/games etc/init.d}) {
                        if (-d "$tmp/$dir") {
                                complex_doit("find $tmp/$dir -type f $find_options -print0 2>/dev/null",
-                                       "| xargs -0r chmod +x");
+                                       "| xargs -0r chmod a+x");
                        }
                }
        }