diff options
author | Georg Brandl <georg@python.org> | 2010-03-13 13:42:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-13 13:42:16 (GMT) |
commit | 49f471836a72a55227d798360830b042e2448ed2 (patch) | |
tree | c08eb50e030b5ec202bdf0aebd11c2e9db3b6046 /Doc/Makefile | |
parent | 252e4003b95f4d79560d4c8d30aa9d2514b15caf (diff) | |
download | cpython-49f471836a72a55227d798360830b042e2448ed2.zip cpython-49f471836a72a55227d798360830b042e2448ed2.tar.gz cpython-49f471836a72a55227d798360830b042e2448ed2.tar.bz2 |
Merged revisions 78921 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78921 | georg.brandl | 2010-03-13 14:39:46 +0100 (Sa, 13 Mär 2010) | 1 line
Change/fix handling of docs download location: for daily builds, put them right next to the HTML.
........
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 9df8e1d..f5c890c 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -161,16 +161,17 @@ check: serve: ../Tools/scripts/serve.py build/html -# Targets for automatic doc build +# Targets for daily automated doc build # for development releases: always build autobuild-dev: make update - make dist + make dist SPHINXOPTS='-A daily=1' -# for stable releases: only build if not in development mode +# for stable releases: only build if not in pre-release stage (alpha, beta, rc) autobuild-stable: @case $(DISTVERSION) in *[abc]*) \ - echo "Not building; not a release version."; exit 1;; \ + echo "Not building; $(DISTVERSION) is not a release version."; \ + exit 1;; \ esac @make autobuild-dev |