blob: af82d30cf4de9e8e9d4d49a4d37909eefe8904f7 [file]
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.target_os not in ["Darwin"]:
config.unsupported = True