summaryrefslogtreecommitdiff
path: root/dh_installmanpages
diff options
context:
space:
mode:
authorjoey <joey>2000-09-21 19:05:38 +0000
committerjoey <joey>2000-09-21 19:05:38 +0000
commit4458a6265c7d3717018e4204d2f9b24464c18ac6 (patch)
tree3dcf8b7a7e7ee018be5377a67608fe03df8eb81b /dh_installmanpages
parentd12efd0389e854713e677572c11b5c4a2c4bec33 (diff)
r373: * dh_installmanpages: don't install files that start with .#* -- these
are CVS files..
Diffstat (limited to 'dh_installmanpages')
-rwxr-xr-xdh_installmanpages2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installmanpages b/dh_installmanpages
index e8f00bfe..81e072e7 100755
--- a/dh_installmanpages
+++ b/dh_installmanpages
@@ -18,7 +18,7 @@ sub find_man {
# .ex files are examples installed by deb-make,
# we don't want those, or .in files, which are
# from configure, nor do we want CVS .#* files.
- if (! (-f $_ && /^.*\.[1-9].*$/ && ! /\.(ex|in)$/) && ! /^\.#/) {
+ if (! (-f $_ && /^.*\.[1-9].*$/ && ! /\.(ex|in)$/ && ! /^\.#/)) {
return;
}