From: Thomas Wouters Date: Thu, 19 Jul 2001 09:34:09 +0000 (+0000) Subject: Avoid the use of 'unset', which isn't available on all platforms. Fixes SF X-Git-Tag: v2.2a3~1057 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee6a4a28ceb8ccf11b60f7d4afdf783d8a4d5b2d;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 7fd60a118a3c..d073c011b849 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -286,7 +286,7 @@ platform: $(PYTHON) # Build the shared modules sharedmods: $(PYTHON) - unset PYTHONPATH PYTHONHOME PYTHONSTARTUP; \ + PYTHONPATH= PYTHONHOME= PYTHONSTARTUP= \ ./$(PYTHON) $(srcdir)/setup.py build # buildno should really depend on something like LIBRARY_SRC