diff options
author | Georg Brandl <georg@python.org> | 2016-06-15 06:58:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-06-15 06:58:00 (GMT) |
commit | b14f0c640967c289b08be86261ac6d886cbf751b (patch) | |
tree | 5decae5dd65fd17563b449aa0bb18f082d611646 /Doc | |
parent | 71e86367e090a0d0595a4221c8334d87979488e6 (diff) | |
parent | 4b9e75ba7f5d2f0baf0603eed9b4029af8e82ff3 (diff) | |
download | cpython-b14f0c640967c289b08be86261ac6d886cbf751b.zip cpython-b14f0c640967c289b08be86261ac6d886cbf751b.tar.gz cpython-b14f0c640967c289b08be86261ac6d886cbf751b.tar.bz2 |
merge with 3.4
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index a42e98b..878685d 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -166,7 +166,7 @@ autobuild-dev: -make suspicious # for quick rebuilds (HTML only) -autobuild-html: +autobuild-dev-html: make html SPHINXOPTS='-A daily=1 -A versionswitcher=1' # for stable releases: only build if not in pre-release stage (alpha, beta) @@ -177,3 +177,10 @@ autobuild-stable: exit 1;; \ esac @make autobuild-dev + +autobuild-stable-html: + @case $(DISTVERSION) in *[ab]*) \ + echo "Not building; $(DISTVERSION) is not a release version."; \ + exit 1;; \ + esac + @make autobuild-dev-html |