]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_fixperms
r1767: * Fix typo in dh_install example. Closes: #314964
[debhelper.git] / dh_fixperms
index 738033e21c12249ea1aee0aabd33a5627eecf2a4..5bd39f3dc495eee84d52dfdcfa48c5c9f4dfb26c 100755 (executable)
@@ -75,6 +75,11 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                "\\( -name '*.so*' -or -name '*.la' -or -name '*.a' \\) $find_options -print0",
                "2>/dev/null | xargs -0r chmod 644");
        
+       # ..and header files ..
+       complex_doit("find $tmp/usr/include  -type f",
+               "-name '*.h' $find_options -print0",
+               "2>/dev/null | xargs -0r chmod 644");
+       
        # .. and perl modules.
        complex_doit("find $tmp/usr/lib/perl5 $tmp/usr/share/perl5 -type f",
                "-perm -5 -name '*.pm' $find_options -print0",
@@ -91,6 +96,12 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                }
        }
        
+       # ADA ali files should be mode 444 to avoid recompilation
+       if (-d "$tmp/usr/lib/ada") {
+               complex_doit("find $tmp/usr/lib/ada -type f",
+                       "-name '*.ali' $find_options -print0",
+                       "2>/dev/null | xargs -0r chmod uga-w");
+       }
 }
 
 =head1 SEE ALSO