From: joey Date: Thu, 21 Sep 2000 19:01:37 +0000 (+0000) Subject: r372: * dh_installmanpages: don't install files that start with .#* -- these X-Git-Tag: version_2.0.101~227 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d12efd0389e854713e677572c11b5c4a2c4bec33;p=debhelper.git r372: * dh_installmanpages: don't install files that start with .#* -- these are CVS files.. --- diff --git a/debian/changelog b/debian/changelog index 5109994..19e79f7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (2.1.11) unstable; urgency=low + + * dh_installmanpages: don't install files that start with .#* -- these + are CVS files.. + + -- Joey Hess Thu, 21 Sep 2000 11:58:52 -0700 + debhelper (2.1.10) unstable; urgency=low * Modified to allow no spaces between control file field name and value diff --git a/dh_installmanpages b/dh_installmanpages index aff70b1..e8f00bf 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; }