diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-10 09:11:48 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-10 09:11:48 +0000 |
commit | f5201bcd3b57e6b96ae3293b3a9c31ab49dd967c (patch) | |
tree | 9d9cd0090653b5bde2103647010194c5e77ea865 /utils/lit | |
parent | 6cdf2ea98e9952a57768a1fcdce8850089263260 (diff) |
lit/Util.py: On Cygwin, 'PATHEXT' may exist but it should not be used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-rw-r--r-- | utils/lit/lit/Util.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/lit/lit/Util.py b/utils/lit/lit/Util.py index ad4adf2f34..5635f50bae 100644 --- a/utils/lit/lit/Util.py +++ b/utils/lit/lit/Util.py @@ -64,7 +64,11 @@ def which(command, paths = None): paths = os.defpath # Get suffixes to search. - pathext = os.environ.get('PATHEXT', '').split(os.pathsep) + # On Cygwin, 'PATHEXT' may exist but it should not be used. + if os.pathsep == ';': + pathext = os.environ.get('PATHEXT', '').split(';') + else: + pathext = [''] # Search the paths... for path in paths.split(os.pathsep): |