From: Norman Walsh Date: Mon, 8 Jul 2002 09:07:21 +0000 (+0000) Subject: Exclude .#* from zip as well X-Git-Tag: release/1.79.1~6^2~5452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62020dd48fe281f9eb23777f0607e89e53fdb5cc;p=docbook-dsssl Exclude .#* from zip as well --- diff --git a/xsl/Makefile b/xsl/Makefile index 93c0af9f6..699d30a75 100644 --- a/xsl/Makefile +++ b/xsl/Makefile @@ -65,6 +65,7 @@ else find . -type f -name "*~" | cut -c3- >> /tmp/tar.exclude find . -type f -name ".*~" | cut -c3- >> /tmp/tar.exclude find . -type f -name "#*" | cut -c3- >> /tmp/tar.exclude + find . -type f -name ".#*" | cut -c3- >> /tmp/tar.exclude find . -type f -name ".cvsignore" | cut -c3- >> /tmp/tar.exclude find . -type f -name "Makefile*" | cut -c3- >> /tmp/tar.exclude find . -type f -name "README.CVS" | cut -c3- >> /tmp/tar.exclude