]> git.donarmstrong.com Git - debhelper.git/commitdiff
r373: * dh_installmanpages: don't install files that start with .#* -- these
authorjoey <joey>
Thu, 21 Sep 2000 19:05:38 +0000 (19:05 +0000)
committerjoey <joey>
Thu, 21 Sep 2000 19:05:38 +0000 (19:05 +0000)
     are CVS files..

dh_installmanpages

index e8f00bfe915e8721a449bc079f68f43393277fea..81e072e77447b03a879cebfab365a7f3962dbf04 100755 (executable)
@@ -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;
        }