Remove needless _exit call

pull/6580/head
Jimmy Brisson 2018-04-09 09:25:18 -05:00
parent 498afc97fa
commit cdb4e98df3
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ if __name__ == '__main__':
params, macros, features = get_config(options.source_dir, target, toolchain)
if not params and not macros:
print("No configuration data available.")
_exit(0)
sys.exit(0)
if params:
print("Configuration parameters")
print("------------------------")