summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-09-25 00:22:49 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-09-25 00:22:49 (GMT)
commit64b2a94f1032f5a2b262ab4540e39c0b9c0bf207 (patch)
tree80713026bef04a5d5c130c94f410ffb349300f08
parent3e4a80a2e185ac7420464ee1826da4ff0603367d (diff)
parentefd713b82b49db333a3a7edda450e69b53dc03ec (diff)
downloadcpython-64b2a94f1032f5a2b262ab4540e39c0b9c0bf207.zip
cpython-64b2a94f1032f5a2b262ab4540e39c0b9c0bf207.tar.gz
cpython-64b2a94f1032f5a2b262ab4540e39c0b9c0bf207.tar.bz2
merge 3.4 (#22484)
-rw-r--r--Doc/Makefile5
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