summaryrefslogtreecommitdiff
path: root/dh_installmanpages
diff options
context:
space:
mode:
authorjoey <joey>2000-09-21 19:01:37 +0000
committerjoey <joey>2000-09-21 19:01:37 +0000
commitd12efd0389e854713e677572c11b5c4a2c4bec33 (patch)
tree0867f2db08d6232baab8447ce2f73674a812d8a3 /dh_installmanpages
parentd862e7704c86e7cdec8083932821d905a687d0b1 (diff)
r372: * dh_installmanpages: don't install files that start with .#* -- these
are CVS files..
Diffstat (limited to 'dh_installmanpages')
-rwxr-xr-xdh_installmanpages4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installmanpages b/dh_installmanpages
index aff70b14..e8f00bfe 100755
--- a/dh_installmanpages
+++ b/dh_installmanpages
@@ -17,8 +17,8 @@ sub find_man {
# Does its filename look like a man page?
# .ex files are examples installed by deb-make,
# we don't want those, or .in files, which are
- # from configure.
- if (! (-f $_ && /^.*\.[1-9].*$/ && ! /\.(ex|in)$/)) {
+ # from configure, nor do we want CVS .#* files.
+ if (! (-f $_ && /^.*\.[1-9].*$/ && ! /\.(ex|in)$/) && ! /^\.#/) {
return;
}