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/IceStormUtil.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/IceStormUtil.py')
-rw-r--r-- | scripts/IceStormUtil.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/IceStormUtil.py b/scripts/IceStormUtil.py index 7d397259858..f091de1c359 100644 --- a/scripts/IceStormUtil.py +++ b/scripts/IceStormUtil.py @@ -152,6 +152,12 @@ class IceStormAdmin(ProcessFromBinDir, ProcessIsReleaseOnly, IceStormProcess, Cl Client.__init__(self, exe="icestormadmin", mapping=Mapping.getByName("cpp"), *args, **kargs) IceStormProcess.__init__(self, instanceName, instance) + def getExe(self, current): + if current.config.buildPlatform == "ppc" and not component.useBinDist(self.mapping, current): + return self.exe + "_32" + else: + return self.exe + getParentProps = Client.getProps # Used by IceStormProcess to get the client properties class Subscriber(IceStormProcess, Server): |