summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-03-31 21:28:57 +0200
committerBenoit Foucher <benoit@zeroc.com>2017-03-31 21:28:57 +0200
commit2272c195c92ca751164749ef18731b3eb2c7593c (patch)
tree8805be69e0401e4f051a51eff57922c2f1210bf5 /scripts/Util.py
parentBuild C++ dependencies with PHP builds (diff)
downloadice-2272c195c92ca751164749ef18731b3eb2c7593c.tar.bz2
ice-2272c195c92ca751164749ef18731b3eb2c7593c.tar.xz
ice-2272c195c92ca751164749ef18731b3eb2c7593c.zip
Another Util.py fix
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index bea5b90c946..2f3152f095f 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -460,11 +460,12 @@ class Mapping:
self.sprops = []
parseOptions(self, options, { "config" : "buildConfig",
"platform" : "buildPlatform" })
-
- # Options bellow are not parsed by the base class by still
- # initialized here for convenience (this avoid having to
+
+ # Options bellow are not parsed by the base class by still
+ # initialized here for convenience (this avoid having to
# check the configuration type)
self.uwp = False
+ self.openssl = False
def __str__(self):
s = []
@@ -2444,8 +2445,6 @@ class CppMapping(Mapping):
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
- self.uwp = False
- self.openssl = False
# Derive from the build config the cpp11 option. This is used by canRun to allow filtering
# tests on the cpp11 value in the testcase options specification
@@ -2685,7 +2684,6 @@ class CppBasedMapping(Mapping):
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
- self.openssl = False
parseOptions(self, options,
{ self.mappingName + "-config" : "buildConfig",
self.mappingName + "-platform" : "buildPlatform" })