diff options
author | Joe George <joe@zeroc.com> | 2021-02-24 15:29:11 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-24 15:29:11 -0500 |
commit | b3fa9be86576323ba4593e966a73556689689663 (patch) | |
tree | 3a04cc85f7442132ca6a4247cc8d0ed312f5b911 /scripts/Util.py | |
parent | Fix python build deps on Windows (diff) | |
download | ice-b3fa9be86576323ba4593e966a73556689689663.tar.bz2 ice-b3fa9be86576323ba4593e966a73556689689663.tar.xz ice-b3fa9be86576323ba4593e966a73556689689663.zip |
Fix version string and objc build
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index a9d24326960..7d7f03a40f8 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -3187,8 +3187,8 @@ class CppMapping(Mapping): def __init__(self, options=[]): Mapping.Config.__init__(self, options) - # if self.buildConfig == platform.getDefaultBuildConfig(): - # self.buildConfig = "cpp98-shared" + if self.buildConfig == platform.getDefaultBuildConfig(): + self.buildConfig = "cpp98-shared" # 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 |