summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
authorLukas Erlinghagen <erluk@web.de>2009-06-13 11:09:06 (GMT)
committerLukas Erlinghagen <erluk@web.de>2009-06-13 11:09:06 (GMT)
commit99c9e89d1e95c8362272dc737196ab8698fc9c24 (patch)
tree0985a22544525ff00b94581938fe6c73bed933ac /runtest.py
parent34af68e356b20c2b01a61addca1d1d5d361cf558 (diff)
downloadSCons-99c9e89d1e95c8362272dc737196ab8698fc9c24.zip
SCons-99c9e89d1e95c8362272dc737196ab8698fc9c24.tar.gz
SCons-99c9e89d1e95c8362272dc737196ab8698fc9c24.tar.bz2
- Merged r4228 (Bugfix for runtest.py) from branches/installer
Diffstat (limited to 'runtest.py')
-rw-r--r--runtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtest.py b/runtest.py
index 53f6e5b..a2d6601 100644
--- a/runtest.py
+++ b/runtest.py
@@ -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: