Browse Source

merge with 3.5

pull/9921/head
Georg Brandl 10 years ago
parent
commit
d20cb0263a
  1. 9
      Doc/Makefile

9
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
Loading…
Cancel
Save