diff options
author | Bradley Sepos <[email protected]> | 2019-02-25 06:12:37 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-02-25 06:12:37 -0500 |
commit | e563c0d80618d13acf5a67fbbe69a907ef07a30c (patch) | |
tree | 7a732aa1f83604a9e913260c10f8ccf4843738ae /make | |
parent | ee3a46467aa5932d1f66138acfd3be593a6843bd (diff) |
configure: Move configured special encoders output before launch output.
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/make/configure.py b/make/configure.py index e673c9c5a..cb8384647 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1973,16 +1973,6 @@ int main() doc.write( 'm4' ) encodeDistfileConfig() - if options.launch: - Launcher( targets ) - - cfg.record_log() - - if os.path.normpath( cfg.build_dir ) == os.curdir: - nocd = True - else: - nocd = False - stdout.write( '%s\n' % ('-' * 79) ) stdout.write( 'Configured options:\n' ) stdout.write( 'Enable FDK-AAC: %s\n' % options.enable_fdk_aac ) @@ -1994,6 +1984,17 @@ int main() if IfHost( True, '*-*-mingw*', none=False ).value is True: stdout.write( 'Enable VCE: %s\n' % options.enable_vce ) + if options.launch: + stdout.write( '%s\n' % ('-' * 79) ) + Launcher( targets ) + + cfg.record_log() + + if os.path.normpath( cfg.build_dir ) == os.curdir: + nocd = True + else: + nocd = False + stdout.write( '%s\n' % ('-' * 79) ) if options.launch: stdout.write( 'Build is finished!\n' ) |