diff options
Diffstat (limited to 'dh_installdocs')
-rwxr-xr-x | dh_installdocs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dh_installdocs b/dh_installdocs index f7291860..ab7e53ca 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -184,6 +184,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { $regexp="(|$regexp)"; } foreach my $fn (grep {/^${regexp}doc-base(\..*)?$/} readdir(DEB)) { + # .EX are example files, generated by eg, dh-make + next if $fn=~/\.EX$/; # Parse the file to get the doc id. open (IN, "debian/$fn") || die "Cannot read debian/$fn."; while (<IN>) { |