From: joey Date: Sun, 6 Jun 2004 15:33:58 +0000 (+0000) Subject: r1689: * dh_installmodules: Look for .ko files too. Closes: #248624 X-Git-Tag: 4.2.11^0 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=62d0cab3e04ec95e5c62a58d291018a1ebce228f;p=debhelper.git r1689: * dh_installmodules: Look for .ko files too. Closes: #248624 * dh_fixperms: fix permissions of .h files. Closes: #252492 --- diff --git a/dh_fixperms b/dh_fixperms index 738033e..3f3babd 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",