diff options
author | Lukas Erlinghagen <erluk@web.de> | 2009-06-13 11:09:06 (GMT) |
---|---|---|
committer | Lukas Erlinghagen <erluk@web.de> | 2009-06-13 11:09:06 (GMT) |
commit | 99c9e89d1e95c8362272dc737196ab8698fc9c24 (patch) | |
tree | 0985a22544525ff00b94581938fe6c73bed933ac | |
parent | 34af68e356b20c2b01a61addca1d1d5d361cf558 (diff) | |
download | SCons-99c9e89d1e95c8362272dc737196ab8698fc9c24.zip SCons-99c9e89d1e95c8362272dc737196ab8698fc9c24.tar.gz SCons-99c9e89d1e95c8362272dc737196ab8698fc9c24.tar.bz2 |
- Merged r4228 (Bugfix for runtest.py) from branches/installer
-rw-r--r-- | runtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -245,7 +245,7 @@ runtest.py: No tests were specified. if sys.platform in ('win32', 'cygwin'): def whereis(file): - pathext = [''] + string.split(os.environ['PATHEXT']) + pathext = [''] + string.split(os.environ['PATHEXT'], os.pathsep) for dir in string.split(os.environ['PATH'], os.pathsep): f = os.path.join(dir, file) for ext in pathext: |