diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-10 14:00:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-10 14:00:55 (GMT) |
commit | 45e564dd78d3cd90ffbdf7f8e44f74dd40ee27b9 (patch) | |
tree | 72ef43834c06e118971835a7ce17d84848a41b20 /Doc/tools | |
parent | b30d0164bfefb19eb09caeac18adc7a138cbbf8c (diff) | |
download | cpython-45e564dd78d3cd90ffbdf7f8e44f74dd40ee27b9.zip cpython-45e564dd78d3cd90ffbdf7f8e44f74dd40ee27b9.tar.gz cpython-45e564dd78d3cd90ffbdf7f8e44f74dd40ee27b9.tar.bz2 |
In the source dist., don't include:
- 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.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/mktarball.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/tools/mktarball.sh b/Doc/tools/mktarball.sh index e9d0c99..6e7ea81 100755 --- a/Doc/tools/mktarball.sh +++ b/Doc/tools/mktarball.sh @@ -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 $? |