From 62d0cab3e04ec95e5c62a58d291018a1ebce228f Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 6 Jun 2004 15:33:58 +0000 Subject: r1689: * dh_installmodules: Look for .ko files too. Closes: #248624 * dh_fixperms: fix permissions of .h files. Closes: #252492 --- dh_fixperms | 5 +++++ 1 file changed, 5 insertions(+) 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", -- cgit v1.2.3