diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-17 16:42:21 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-17 16:42:21 (GMT) |
commit | 772ede31d7a5aed0c72943be9230313de687e0be (patch) | |
tree | f017114c2e9f7c7b8530f6216401a07b398d4b5f /src/script/scons.py | |
parent | 3b884c9421bae33e2c7a204aacc5fdc2d9394423 (diff) | |
download | SCons-772ede31d7a5aed0c72943be9230313de687e0be.zip SCons-772ede31d7a5aed0c72943be9230313de687e0be.tar.gz SCons-772ede31d7a5aed0c72943be9230313de687e0be.tar.bz2 |
Portability fixes for tests on Windows Nt.
Diffstat (limited to 'src/script/scons.py')
-rw-r--r-- | src/script/scons.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script/scons.py b/src/script/scons.py index b8dc2ff..18347b4 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -33,6 +33,11 @@ import string import sys import traceback +# Strip the script directory from sys.path() so on case-insensitive +# (WIN32) systems Python doesn't think that the "scons" script is the +# "SCons" package. +sys.path = sys.path[1:] + import SCons.Node import SCons.Node.FS import SCons.Job |