From: Norman Walsh Date: Sun, 17 Nov 2002 16:51:47 +0000 (+0000) Subject: Don't include pyc files in distribution X-Git-Tag: release/1.79.1~6^2~5101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca50aa555ba4e8acdf6055b3b1ca29e524c7482a;p=docbook-dsssl Don't include pyc files in distribution --- diff --git a/xsl/Makefile b/xsl/Makefile index 2a3c08b40..30b822c36 100644 --- a/xsl/Makefile +++ b/xsl/Makefile @@ -64,6 +64,7 @@ else find . -print | grep .classes | 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 ".*.pyc" | 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