Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ee6a4a2

Browse files
committed
Avoid the use of 'unset', which isn't available on all platforms. Fixes SF
bug #442627.
1 parent 4d712a4 commit ee6a4a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ platform: $(PYTHON)
286286

287287
# Build the shared modules
288288
sharedmods: $(PYTHON)
289-
unset PYTHONPATH PYTHONHOME PYTHONSTARTUP; \
289+
PYTHONPATH= PYTHONHOME= PYTHONSTARTUP= \
290290
./$(PYTHON) $(srcdir)/setup.py build
291291

292292
# buildno should really depend on something like LIBRARY_SRC

0 commit comments

Comments
 (0)