diff options
author | joey <joey> | 2003-02-22 19:45:01 +0000 |
---|---|---|
committer | joey <joey> | 2003-02-22 19:45:01 +0000 |
commit | 1331f43bd02122e6368c808e5b69ceefc6e37c53 (patch) | |
tree | 5655642d6a92dbe164e081386c97febd1b192f2a /dh_compress | |
parent | 91f8bb5fbc5a8cd9d9d64da716f11fcd2831c358 (diff) |
r574: * wiggy didn't take my hint about making update-modules send warnings to
stderr, so its overly verbose stdout is now directed to /dev/null to
prevent conflicts with debconf. Closes: #150804
* dh_fixperms: only skip examples directories which in a parent of
usr/share/doc, not in a deeper tree. Closes: #152602
* dh_compress: stop even looking at usr/doc
Diffstat (limited to 'dh_compress')
-rwxr-xr-x | dh_compress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_compress b/dh_compress index eaa1717..de6a97b 100755 --- a/dh_compress +++ b/dh_compress @@ -95,7 +95,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # ".tgz", "-gz", "-z", "_z" push @files, split(/\n/,` find usr/info usr/share/info usr/man usr/share/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null || true; - find usr/doc usr/share/doc -type f \\( -size +4k -or -name "changelog*" -or -name "NEWS*" \\) \\ + find usr/share/doc -type f \\( -size +4k -or -name "changelog*" -or -name "NEWS*" \\) \\ \\( -name changelog.html -or ! -iname "*.htm*" \\) \\ ! -iname "*.gif" ! -iname "*.png" ! -iname "*.jpg" \\ ! -iname "*.jpeg" ! -iname "*.gz" ! -iname "*.taz" \\ |