summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-04-13 20:51:27 (GMT)
committerGeorg Brandl <georg@python.org>2008-04-13 20:51:27 (GMT)
commit8ffb5734d33db1ec0cc07e135e44e26db95cfd35 (patch)
tree7688bee79dd0c251a7086d31b41b3bdbac4df87c /Doc/Makefile
parent41a0a37c08a763ef36c32c7420c6a0e45bf33736 (diff)
downloadcpython-8ffb5734d33db1ec0cc07e135e44e26db95cfd35.zip
cpython-8ffb5734d33db1ec0cc07e135e44e26db95cfd35.tar.gz
cpython-8ffb5734d33db1ec0cc07e135e44e26db95cfd35.tar.bz2
Check out Jinja as a separate step now that it's not included in the Sphinx package anymore.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 5cfe635..5e17cf8 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -34,6 +34,10 @@ checkout:
echo "Checking out Docutils..."; \
svn checkout $(SVNROOT)/external/docutils-0.4/docutils tools/docutils; \
fi
+ @if [ ! -d tools/jinja ]; then \
+ echo "Checking out Jinja..."; \
+ svn checkout $(SVNROOT)/external/Jinja-1.1/jinja tools/jinja; \
+ fi
@if [ ! -d tools/pygments ]; then \
echo "Checking out Pygments..."; \
svn checkout $(SVNROOT)/external/Pygments-0.9/pygments tools/pygments; \
@@ -42,6 +46,7 @@ checkout:
update: checkout
svn update tools/sphinx
svn update tools/docutils
+ svn update tools/jinja
svn update tools/pygments
build: checkout