diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-04-21 17:02:23 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-04-21 17:02:23 -0400 |
commit | fb0d34ac16dced24297dcbc3312addee92af0857 (patch) | |
tree | b290fa31f141e0848db8335147daa1f196d594bf /dh_fixperms | |
parent | 2a1a8bcf0321fb3c0e81031c74efaf1ab7eda3e7 (diff) | |
download | debhelper-fb0d34ac16dced24297dcbc3312addee92af0857.tar.gz |
dh_fixperms: Ensure lintian overrides are mode 644. (Patch from #459548)
Diffstat (limited to 'dh_fixperms')
-rwxr-xr-x | dh_fixperms | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dh_fixperms b/dh_fixperms index d9c726ca..1d4a33f3 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -105,6 +105,13 @@ foreach my $package (@{$dh{DOPACKAGES}}) { "-name '*.ali' $find_options -print0", "2>/dev/null | xargs -0r chmod uga-w"); } + + # Lintian overrides should never be executable, too. + if (-d "$tmp/usr/share/lintian") { + complex_doit("find $tmp/usr/share/lintian/overrides", + "-type f $find_options -print0", + "2>/dev/null | xargs -0r chmod 644"); + } } =head1 SEE ALSO |