Unset PYTHONPATH, for my convenience.

This commit is contained in:
Guido van Rossum 2007-08-29 18:15:48 +00:00
parent dcce8391d1
commit 5f7b087f66
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ CYGWIN*) PYTHON=./python.exe;;
*) PYTHON=./python;; *) PYTHON=./python;;
esac esac
# Unset PYTHONPATH, just to be sure.
unset PYTHONPATH
# Create the output directory if necessary. # Create the output directory if necessary.
mkdir -p OUT mkdir -p OUT