From: Thomas Wouters Date: Thu, 19 Jul 2001 09:28:24 +0000 (+0000) Subject: Avoid the use of 'unset', which isn't available on all platforms. Fixes SF X-Git-Tag: v2.1.1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e02518f9ac7604ce3c46413776f6cf57847b04e4;p=thirdparty%2FPython%2Fcpython.git Avoid the use of 'unset', which isn't available on all platforms. Fixes SF bug #442627. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index f81702b4509d..9d8b40fa166a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -282,7 +282,8 @@ platform: $(PYTHON) # Build the shared modules sharedmods: $(PYTHON) - PYTHONPATH= ./$(PYTHON) $(srcdir)/setup.py build + PYTHONPATH= PYTHONHOME= PYTHONSTARTUP= \ + ./$(PYTHON) $(srcdir)/setup.py build # buildno should really depend on something like LIBRARY_SRC buildno: $(PARSER_OBJS) \