blob: 3ea05fa0443567ea95ec2dc6a90c64752fb27484 [file] [log] [blame]
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.target_os not in ["Linux"]:
config.unsupported = True