diff options
author | Thomas Wouters <thomas@python.org> | 2001-07-19 09:34:09 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-07-19 09:34:09 (GMT) |
commit | ee6a4a28ceb8ccf11b60f7d4afdf783d8a4d5b2d (patch) | |
tree | 8caed17322cd43555719a7e74c85d29f0443c71b /Makefile.pre.in | |
parent | 4d712a4d6712887e53d5f89943c7bbef5eb9492e (diff) | |
download | cpython-ee6a4a28ceb8ccf11b60f7d4afdf783d8a4d5b2d.zip cpython-ee6a4a28ceb8ccf11b60f7d4afdf783d8a4d5b2d.tar.gz cpython-ee6a4a28ceb8ccf11b60f7d4afdf783d8a4d5b2d.tar.bz2 |
Avoid the use of 'unset', which isn't available on all platforms. Fixes SF
bug #442627.
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 7fd60a1..d073c01 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 |