diff options
author | Georg Brandl <georg@python.org> | 2007-08-15 18:02:37 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-15 18:02:37 (GMT) |
commit | 7094a0c9a8902921f5e58b45e22c023786662ba7 (patch) | |
tree | 7947e9dd4aced0b48d3d65592e1aebb23eff8f85 /Doc/Makefile | |
parent | 64dec73154610a45c8ebfb2be812a47d5965af38 (diff) | |
download | cpython-7094a0c9a8902921f5e58b45e22c023786662ba7.zip cpython-7094a0c9a8902921f5e58b45e22c023786662ba7.tar.gz cpython-7094a0c9a8902921f5e58b45e22c023786662ba7.tar.bz2 |
Don't use "?=" which seems to be a GNUism.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 955fb68..1811a34 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -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) |