From d12efd0389e854713e677572c11b5c4a2c4bec33 Mon Sep 17 00:00:00 2001 From: joey Date: Thu, 21 Sep 2000 19:01:37 +0000 Subject: [PATCH] r372: * dh_installmanpages: don't install files that start with .#* -- these are CVS files.. --- debian/changelog | 7 +++++++ dh_installmanpages | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) 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; } -- 2.39.2