From defe98b290826ce9fd4ee098b3cdccb5513a7f06 Mon Sep 17 00:00:00 2001 From: Stephane Glondu Date: Wed, 29 Apr 2009 23:42:23 +0200 Subject: Fix permissions of *.cmxs files --- dh_fixperms | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dh_fixperms b/dh_fixperms index 1d4a33f3..6fa50652 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -82,6 +82,11 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # ..and desktop files .. complex_doit("find $tmp/usr/share/applications -type f $find_options -print0", "2>/dev/null | xargs -0r chmod 644"); + + # ..and OCaml native-code shared objects .. + complex_doit("find $tmp -perm -5 -type f", + "\\( -name '*.cmxs' \\) $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", -- cgit v1.2.3