From: Guido van Rossum Date: Thu, 19 Jul 2001 15:17:52 +0000 (+0000) Subject: Thomas, I don't care about unset either, but setting PYTHONHOME= X-Git-Tag: v2.2a3~1050 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e31c2eeb410464084e6dc88beae03da766a68ee4;p=python Thomas, I don't care about unset either, but setting PYTHONHOME= doesn't work -- it actually prevents the extensions from being built properly. So I'm changing the "sharedmods" target to what I presume it was before: PYTHONPATH= ./$(PYTHON) $(srcdir)/setup.py build --- diff --git a/Makefile.pre.in b/Makefile.pre.in index a6448a9c20..dc63519307 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -286,8 +286,7 @@ platform: $(PYTHON) # Build the shared modules sharedmods: $(PYTHON) - PYTHONPATH= PYTHONHOME= PYTHONSTARTUP= \ - ./$(PYTHON) $(srcdir)/setup.py build + PYTHONPATH= ./$(PYTHON) $(srcdir)/setup.py build # buildno should really depend on something like LIBRARY_SRC buildno: $(PARSER_OBJS) \