[Python-checkins] r57071 - python/trunk/Doc/Makefile
georg.brandl
python-checkins at python.org
Wed Aug 15 20:02:38 CEST 2007
Author: georg.brandl
Date: Wed Aug 15 20:02:37 2007
New Revision: 57071
Modified:
python/trunk/Doc/Makefile
Log:
Don't use "?=" which seems to be a GNUism.
Modified: python/trunk/Doc/Makefile
==============================================================================
--- python/trunk/Doc/Makefile (original)
+++ python/trunk/Doc/Makefile Wed Aug 15 20:02:37 2007
@@ -4,9 +4,9 @@
#
# You can set these variables from the command line.
-PYTHON ?= python
-SVNROOT ?= http://svn.python.org/projects
-SPHINXOPTS ?=
+PYTHON = python
+SVNROOT = http://svn.python.org/projects
+SPHINXOPTS =
ALLSPHINXOPTS = -b$(BUILDER) -dbuild/doctrees $(SPHINXOPTS) . build/$(BUILDER)
More information about the Python-checkins
mailing list