]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_fixperms
r1965: * dh_fixperms: Change a chmod +x to chmod a+x, to avoid the umask
[debhelper.git] / dh_fixperms
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");
                        }
                }
        }