diff options
author | Jose <jose@zeroc.com> | 2013-09-18 22:18:46 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2013-09-18 22:18:46 +0200 |
commit | 26135a5806e22ed7e5062b0032028a7bd8eeef40 (patch) | |
tree | 83cac485cd320531a27b81dc67aad8b29e950e3e /demoscript/Util.py | |
parent | Fix for ICE-5437 - metrics test failure (diff) | |
download | ice-26135a5806e22ed7e5062b0032028a7bd8eeef40.tar.bz2 ice-26135a5806e22ed7e5062b0032028a7bd8eeef40.tar.xz ice-26135a5806e22ed7e5062b0032028a7bd8eeef40.zip |
Don't add VC110 bin dir to PATH when testing py with a binary distribution.
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index b48b3410f92..dd3adda9786 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -235,7 +235,7 @@ def configurePaths(): # Add compiler sub-directory if isWin32(): subdir = None - if getCppCompiler() == "VC110": + if getCppCompiler() == "VC110" and getMapping() != "py": subdir = "vc110" if subdir: |