summaryrefslogtreecommitdiff
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-02-17 05:33:50 +0000
committerAndrew M. Kuchling <amk@amk.ca>2001-02-17 05:33:50 +0000
commit389a1379bbcfbf88df18e5947b0a6efa179ea62a (patch)
treec24f870f170a33d1e89a0b599227997533c8761d /Makefile.pre.in
parent3a2b2f3a87886d08a53848726a65f3e5a6898d87 (diff)
downloadcpython-389a1379bbcfbf88df18e5947b0a6efa179ea62a.tar.gz
Set PYTHONPATH when running setup.py in order to override any ambient
value for it, as suggested in bug #129854. This prevents an old PYTHONPATH confusing setup.py (say, if it results in Python finding an old version of the Distutils)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index c1279f47fe..c08c4756bb 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -281,7 +281,7 @@ platform: $(PYTHON)
# Build the shared modules
sharedmods: $(PYTHON)
- ./$(PYTHON) $(srcdir)/setup.py build
+ PYTHONPATH= ./$(PYTHON) $(srcdir)/setup.py build
# buildno should really depend on something like LIBRARY_SRC
buildno: $(PARSER_OBJS) \
@@ -689,7 +689,7 @@ libainstall: all
# Install the dynamically loadable modules
# This goes into $(exec_prefix)
sharedinstall:
- ./python$(EXEEXT) $(srcdir)/setup.py install \
+ PYTHONPATH= ./python$(EXEEXT) $(srcdir)/setup.py install \
--install-platlib=$(DESTSHARED)
# Build the toplevel Makefile