Author: collin.winter
Date: Wed Mar 21 03:14:12 2007
New Revision: 54470

Modified:
   python/branches/p3yk/Doc/Makefile
Log:
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).

Modified: python/branches/p3yk/Doc/Makefile
==============================================================================
--- python/branches/p3yk/Doc/Makefile   (original)
+++ python/branches/p3yk/Doc/Makefile   Wed Mar 21 03:14:12 2007
@@ -73,7 +73,7 @@
 # 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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to