def get_uniq_cfg_path(): base_uniq_cfg = third_party_utils.default_uniq_cfg_path() if chpl_comm_debug.get() == 'debug': suffix = '-debug' else: suffix = '' return base_uniq_cfg + suffix
def get_uniq_cfg_path(): base_uniq_cfg = third_party_utils.default_uniq_cfg_path() if chpl_comm_debug.get() == 'debug': base_uniq_cfg += '-debug' substrate = chpl_comm_substrate.get() segment = chpl_comm_segment.get() return base_uniq_cfg + '/substrate-' + substrate + '/seg-' + segment