diff options
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 2ec519657d9..fe79b115b81 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1404,9 +1404,6 @@ class ProcessFromBinDir: def isFromBinDir(self): return True - def getExe(self, current): - return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe - # # Executables for processes inheriting this marker class are only provided # as a Release executble on Windows @@ -1416,7 +1413,6 @@ class ProcessIsReleaseOnly: def isReleaseOnly(self): return True - class SliceTranslator(ProcessFromBinDir, ProcessIsReleaseOnly, SimpleClient): def __init__(self, translator): |