$OpenBSD$ index 15f9b4f..eb3fcfe 100644 --- build/automationutils.py.orig Fri Feb 20 15:40:36 2015 +++ build/automationutils.py Fri Feb 20 15:40:36 2015 @@ -43,7 +43,6 @@ __all__ = [ "getDebuggerInfo", "DEBUGGER_INFO", "replaceBackSlashes", - "wrapCommand", 'KeyValueParseError', 'parseKeyValue', 'systemMemory', @@ -407,19 +406,6 @@ def processLeakLog(leakLogFile, leakThreshold = 0): def replaceBackSlashes(input): return input.replace('\\', '/') -def wrapCommand(cmd): - """ - If running on OS X 10.5 or older, wrap |cmd| so that it will - be executed as an i386 binary, in case it's a 32-bit/64-bit universal - binary. - """ - if platform.system() == "Darwin" and \ - hasattr(platform, 'mac_ver') and \ - platform.mac_ver()[0][:4] < '10.6': - return ["arch", "-arch", "i386"] + cmd - # otherwise just execute the command normally - return cmd - class KeyValueParseError(Exception): """error when parsing strings of serialized key-values""" def __init__(self, msg, errors=()):