diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-08-02 18:28:26 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2019-08-02 18:28:26 -0500 |
commit | 7af30e0c843ac1936b50a9318ae72d7375d7996b (patch) | |
tree | 1fb362ee6c5b49341300d4083667ce869d904819 /scripts/IceBridgeUtil.py | |
parent | Fixed ppc testing with bin (diff) | |
download | ice-7af30e0c843ac1936b50a9318ae72d7375d7996b.tar.bz2 ice-7af30e0c843ac1936b50a9318ae72d7375d7996b.tar.xz ice-7af30e0c843ac1936b50a9318ae72d7375d7996b.zip |
Fixes for source build testing on ppc
Diffstat (limited to 'scripts/IceBridgeUtil.py')
-rw-r--r-- | scripts/IceBridgeUtil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/IceBridgeUtil.py b/scripts/IceBridgeUtil.py index e6194524896..f635036f968 100644 --- a/scripts/IceBridgeUtil.py +++ b/scripts/IceBridgeUtil.py @@ -9,6 +9,9 @@ class IceBridge(ProcessFromBinDir, ProcessIsReleaseOnly, Server): def __init__(self, *args, **kargs): Server.__init__(self, "icebridge", mapping=Mapping.getByName("cpp"), desc="IceBridge", *args, **kargs) + def getExe(self, current): + return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe + def getProps(self, current): props = Server.getProps(self, current); props.update({ |