]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_fixperms
r1968: * dh_fixperms: Make all files in /usr/include 644, not only .h files.
[debhelper.git] / dh_fixperms
index 775ab55e131428cae372fa13bb04e6c3ccda35a0..6ef0905cfe20705c621071e77e8cda80a05501ce 100755 (executable)
@@ -76,8 +76,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                "2>/dev/null | xargs -0r chmod 644");
        
        # ..and header files ..
-       complex_doit("find $tmp/usr/include  -type f",
-               "-name '*.h' $find_options -print0",
+       complex_doit("find $tmp/usr/include  -type f $find_options -print0",
                "2>/dev/null | xargs -0r chmod 644");
        
        # .. and perl modules.
@@ -91,7 +90,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");
                        }
                }
        }