diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-01 02:37:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-01 02:37:37 (GMT) |
commit | b906d2ee6680c03afaf39e4efee2b4865f66437a (patch) | |
tree | bb0c0e388cbd60e6b2e8f6df52b03413c0e350b5 | |
parent | 1cd3c14034c766c79b4c04f430da22ea86745879 (diff) | |
download | cpython-b906d2ee6680c03afaf39e4efee2b4865f66437a.zip cpython-b906d2ee6680c03afaf39e4efee2b4865f66437a.tar.gz cpython-b906d2ee6680c03afaf39e4efee2b4865f66437a.tar.bz2 |
Do not build the "longhtml" version for pre-release versions.
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index db88c2c..c2ceb7c 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -310,7 +310,11 @@ zipps: postscript-$(PAPER)-$(RELEASE).zip zippdf: pdf-$(PAPER)-$(RELEASE).zip ziplatex: latex-$(RELEASE).zip -zips: zippdf zipps ziphtml ziplonghtml +# Only build the longhtml version for final releases; use the second +# version of this for pre-release versions. +# +#zips: zippdf zipps ziphtml ziplonghtml +zips: zippdf zipps ziphtml bziphtml: html-$(RELEASE).tar.bz2 bzipinfo: info-$(RELEASE).tar.bz2 |