From: joey <joey>
Date: Thu, 21 Sep 2000 19:05:38 +0000 (+0000)
Subject: r373:    * dh_installmanpages: don't install files that start with .#* -- these
X-Git-Tag: version_2.0.101~226
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4458a6265c7d3717018e4204d2f9b24464c18ac6;p=debhelper.git

r373:    * dh_installmanpages: don't install files that start with .#* -- these
     are CVS files..
---

diff --git a/dh_installmanpages b/dh_installmanpages
index e8f00bf..81e072e 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;
 	}