diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-21 02:14:12 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-21 02:14:12 (GMT) |
commit | 450ee81b227b093eeb0b7a933fe6ddc6dc768d4a (patch) | |
tree | 269281133cc5596009dac3e15185acc7c9be8747 /Doc/Makefile | |
parent | 65d09d4ee984d569424e11415f30d6af209ef558 (diff) | |
download | cpython-450ee81b227b093eeb0b7a933fe6ddc6dc768d4a.zip cpython-450ee81b227b093eeb0b7a933fe6ddc6dc768d4a.tar.gz cpython-450ee81b227b093eeb0b7a933fe6ddc6dc768d4a.tar.bz2 |
Use the local python binary to build the docs, not whatever 'python' is on the PATH (which is probably Python 2.x, and we need 3.x).
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index bda244a..03a32d0 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -73,7 +73,7 @@ TOOLSDIR= tools # commontex/patchlevel.tex in their dependencies. RELEASE=$(shell $(PYTHON) tools/getversioninfo) -PYTHON= python +PYTHON= $(PWD)/../python DVIPS= dvips -N0 -t $(PAPER) # This is ugly! The issue here is that there are two different levels |