diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-12-19 09:24:40 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-12-19 09:24:40 (GMT) |
commit | 0d1536654d9c7b1d9cfa0d07aea83d89a75f48ba (patch) | |
tree | 60e8aa7f3378490c1f7be8cde1f6195f3232a857 /Makefile.pre.in | |
parent | 1fbb577ee26becacf53b92c53df356aaf227ea73 (diff) | |
download | cpython-0d1536654d9c7b1d9cfa0d07aea83d89a75f48ba.zip cpython-0d1536654d9c7b1d9cfa0d07aea83d89a75f48ba.tar.gz cpython-0d1536654d9c7b1d9cfa0d07aea83d89a75f48ba.tar.bz2 |
When running regen for the plat directories we should use the BUILDEXT
extension, not the EXT one, as regen uses the python binary in the build
directory. Fixes #493959.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 6c1db27..f4eb01d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -653,7 +653,7 @@ $(srcdir)/Lib/$(PLATDIR): export PATH; PATH="`pwd`:$$PATH"; \ export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \ export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \ - export EXE; EXE="$(EXE)"; \ + export EXE; EXE="$(BUILDEXE)"; \ cd $(srcdir)/Lib/$(PLATDIR); ./regen # Install the include files |