]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_installmanpages
r373: * dh_installmanpages: don't install files that start with .#* -- these
[debhelper.git] / 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;
        }