summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdh_fixperms5
1 files changed, 5 insertions, 0 deletions
diff --git a/dh_fixperms b/dh_fixperms
index 738033e2..3f3babdc 100755
--- a/dh_fixperms
+++ b/dh_fixperms
@@ -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",