diff options
author | joey <joey> | 2000-09-21 19:05:38 +0000 |
---|---|---|
committer | joey <joey> | 2000-09-21 19:05:38 +0000 |
commit | 4458a6265c7d3717018e4204d2f9b24464c18ac6 (patch) | |
tree | 3dcf8b7a7e7ee018be5377a67608fe03df8eb81b | |
parent | d12efd0389e854713e677572c11b5c4a2c4bec33 (diff) | |
download | debhelper-4458a6265c7d3717018e4204d2f9b24464c18ac6.tar.gz |
r373: * dh_installmanpages: don't install files that start with .#* -- these
are CVS files..
-rwxr-xr-x | dh_installmanpages | 2 |
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; } |