diff options
| author | Georg Brandl <georg@python.org> | 2016-06-15 08:58:46 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2016-06-15 08:58:46 +0200 |
| commit | d20cb0263a6b760abb10ef7e5546fa3f1ff81af7 (patch) | |
| tree | fb6ac17bf973f3649605ca060fc0b6815418844d /Doc/Makefile | |
| parent | 9a8b5ca2d703d22ad57b51eb417fca22725c1419 (diff) | |
| parent | b14f0c640967c289b08be86261ac6d886cbf751b (diff) | |
| download | cpython-git-d20cb0263a6b760abb10ef7e5546fa3f1ff81af7.tar.gz | |
merge with 3.5
Diffstat (limited to 'Doc/Makefile')
| -rw-r--r-- | Doc/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 03a37f1e49..202e8e1de3 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 |
