summaryrefslogtreecommitdiff
path: root/scripts/IcePatch2Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/IcePatch2Util.py')
-rw-r--r--scripts/IcePatch2Util.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/IcePatch2Util.py b/scripts/IcePatch2Util.py
index 5485d7babee..6b12ecccc76 100644
--- a/scripts/IcePatch2Util.py
+++ b/scripts/IcePatch2Util.py
@@ -9,12 +9,21 @@ class IcePatch2Calc(ProcessFromBinDir, ProcessIsReleaseOnly, Process):
def __init__(self, *args, **kargs):
Process.__init__(self, exe="icepatch2calc", mapping=Mapping.getByName("cpp"), *args, **kargs)
+ def getExe(self, current):
+ return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe
+
class IcePatch2Client(ProcessFromBinDir, ProcessIsReleaseOnly, Process):
def __init__(self, *args, **kargs):
Process.__init__(self, exe="icepatch2client", mapping=Mapping.getByName("cpp"), *args, **kargs)
+ def getExe(self, current):
+ return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe
+
class IcePatch2Server(ProcessFromBinDir, ProcessIsReleaseOnly, Process):
def __init__(self, *args, **kargs):
Process.__init__(self, exe="icepatch2server", mapping=Mapping.getByName("cpp"), *args, **kargs)
+
+ def getExe(self, current):
+ return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe