diff options
author | joey <joey> | 2000-09-21 19:01:37 +0000 |
---|---|---|
committer | joey <joey> | 2000-09-21 19:01:37 +0000 |
commit | d12efd0389e854713e677572c11b5c4a2c4bec33 (patch) | |
tree | 0867f2db08d6232baab8447ce2f73674a812d8a3 /dh_installmanpages | |
parent | d862e7704c86e7cdec8083932821d905a687d0b1 (diff) | |
download | debhelper-d12efd0389e854713e677572c11b5c4a2c4bec33.tar.gz |
r372: * dh_installmanpages: don't install files that start with .#* -- these
are CVS files..
Diffstat (limited to 'dh_installmanpages')
-rwxr-xr-x | dh_installmanpages | 4 |
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; } |