From e563c0d80618d13acf5a67fbbe69a907ef07a30c Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Mon, 25 Feb 2019 06:12:37 -0500 Subject: [PATCH] configure: Move configured special encoders output before launch output. --- make/configure.py | 21 +++++++++++---------- 1 file 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' ) -- 2.40.0