]> granicus.if.org Git - python/commitdiff
In the source dist., don't include:
authorFred Drake <fdrake@acm.org>
Tue, 10 Mar 1998 14:00:55 +0000 (14:00 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 10 Mar 1998 14:00:55 +0000 (14:00 +0000)
- the .cvsignore files; these are only useful in the CVS tree

- ref/ref.pdf

- ref/ref.ps

After compression, these last two account for about one-half MB, and half
the tarball.  They can be picked up from the appropriate format dist if
needed.

Doc/tools/mktarball.sh

index e9d0c994888932a4dd9f69468b6a0ba1b22baf8b..6e7ea81bff55786c627a735b4e8094d25a120ef2 100755 (executable)
@@ -28,6 +28,11 @@ else
     rm -r `find $TEMPDIR -name CVS -print` || exit $?
 fi
 
+rm -f `find $TEMPDIR/Python-$VERSION -name .cvsignore -print`
+
+rm -f $TEMPDIR/Python-$VERSION/Doc/ref/ref.pdf
+rm -f $TEMPDIR/Python-$VERSION/Doc/ref/ref.ps
+
 cd $TEMPDIR
 
 (tar cf - Python-$VERSION | gzip -9 >$MYDIR/latex-$VERSION.tar.gz) || exit $?