summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-04-17 16:30:05 +0200
committerJose <jose@zeroc.com>2017-04-17 16:30:05 +0200
commiteb2a43b2662639116f05fa2ca694efc514631b64 (patch)
tree300f954ae18f582dda4cdda99414707a9f15a025 /scripts/Util.py
parentFix PATH setting for Windows binary distributions (diff)
downloadice-eb2a43b2662639116f05fa2ca694efc514631b64.tar.bz2
ice-eb2a43b2662639116f05fa2ca694efc514631b64.tar.xz
ice-eb2a43b2662639116f05fa2ca694efc514631b64.zip
Another fix for Windows env setup
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index d33755b172f..19c50e2c78e 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -327,7 +327,7 @@ class Windows(Platform):
# Use binary distribution from ICE_HOME if building for C++/VC140/x64/Release or
# for another mapping than C++ or C#.
#
- if (cpp and v140 and platform == "x64" and current.config == "Release") or (not csharp and not cpp):
+ if (cpp and v140 and platform == "x64" and current.config.buildConfig == "Release") or (not csharp and not cpp):
return os.environ.get("ICE_HOME")
#