summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey>2004-06-06 15:33:58 +0000
committerjoey <joey>2004-06-06 15:33:58 +0000
commit62d0cab3e04ec95e5c62a58d291018a1ebce228f (patch)
tree760489c64f68c7b737a1c2d1c7c2630caed94352
parent2567f881d9af1a361a41c0f61acb311ed43807b4 (diff)
r1689: * dh_installmodules: Look for .ko files too. Closes: #248624
* dh_fixperms: fix permissions of .h files. Closes: #252492
-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",