blob: a85dfcd24c08ef81ad0ea8587f2e81d25486a65f [file] [log] [blame]
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -08001def getRoot(config):
2 if not config.parent:
3 return config
4 return getRoot(config.parent)
5
6root = getRoot(config)
7
8if root.host_os not in ['Darwin']:
9 config.unsupported = True