diff options
author | joey <joey> | 2002-02-28 18:01:59 +0000 |
---|---|---|
committer | joey <joey> | 2002-02-28 18:01:59 +0000 |
commit | 8ba59bbb27c5caf42ccb9c96c9be803b3310448f (patch) | |
tree | e17eaf15607608b4047e3fe2aa1707eba544c4c7 /dh_installdocs | |
parent | 23ed23599d8f231166357766d4bea10d12aa363a (diff) | |
download | debhelper-8ba59bbb27c5caf42ccb9c96c9be803b3310448f.tar.gz |
r513: * Fixed dh_installdocs and dh_installexamples to support multiple -X's.
Diffstat (limited to 'dh_installdocs')
-rwxr-xr-x | dh_installdocs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installdocs b/dh_installdocs index 9b5922f8..7bfe8ff1 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -115,7 +115,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { if (@docs) { my $exclude = ''; if ($dh{EXCLUDE_FIND}) { - $exclude = ' \( ! '.$dh{EXCLUDE_FIND}.' \)'; + $exclude = ' -and ! \( '.$dh{EXCLUDE_FIND}.' \)'; } foreach my $doc (@docs) { next if excludefile($doc); |