diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-09-25 00:22:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-09-25 00:22:24 (GMT) |
commit | efd713b82b49db333a3a7edda450e69b53dc03ec (patch) | |
tree | 96d225d6de27629d8c1dc02fefa8627049681c4e /Doc/Makefile | |
parent | 29001c831947340f2d54ab6c5073116e6ff7e1de (diff) | |
download | cpython-efd713b82b49db333a3a7edda450e69b53dc03ec.zip cpython-efd713b82b49db333a3a7edda450e69b53dc03ec.tar.gz cpython-efd713b82b49db333a3a7edda450e69b53dc03ec.tar.bz2 |
allow archives for rc releases to be built (closes #22484)
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 43dd804..ec35c12 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -165,9 +165,10 @@ autobuild-dev: autobuild-html: make html SPHINXOPTS='-A daily=1 -A versionswitcher=1' -# for stable releases: only build if not in pre-release stage (alpha, beta, rc) +# for stable releases: only build if not in pre-release stage (alpha, beta) +# release candidate downloads are okay, since the stable tree can be in that stage autobuild-stable: - @case $(DISTVERSION) in *[abc]*) \ + @case $(DISTVERSION) in *[ab]*) \ echo "Not building; $(DISTVERSION) is not a release version."; \ exit 1;; \ esac |