From: Bradley Sepos Date: Sat, 13 Apr 2019 16:13:27 +0000 (-0400) Subject: make: Tweak configure.py output language. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=927a8630a7eeb4606ac7d3d576e257296a68c972;p=handbrake make: Tweak configure.py output language. Internally, configure.py may use the terms host and build somewhat inappropriately, but that does not mean we should print such ambiguity. --- diff --git a/make/configure.py b/make/configure.py index d66d86f42..1d1ce0b8a 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1927,15 +1927,15 @@ int main() encodeDistfileConfig() stdout.write( '%s\n' % ('-' * 79) ) - stdout.write( 'Host system: %s\n' % '-'.join(host).rstrip('-') ) - stdout.write( 'Build system: %s' % build.system ) + stdout.write( 'Build system: %s\n' % '-'.join(host).rstrip('-') ) + stdout.write( 'Target platform: %s' % build.system ) stdout.write( ' (cross-compile)\n' ) if options.cross else stdout.write( '\n' ) stdout.write( 'Enable FDK-AAC: %s\n' % options.enable_fdk_aac ) if build.system == 'darwin': stdout.write( 'Enable FFmpeg AAC: %s\n' % options.enable_ffmpeg_aac ) else: - stdout.write( 'Enable FFmpeg AAC: %s (Required on target platform)\n' % options.enable_ffmpeg_aac ) + stdout.write( 'Enable FFmpeg AAC: %s (required on target platform)\n' % options.enable_ffmpeg_aac ) if build.system == 'linux' or build.system == 'mingw': stdout.write( 'Enable NVENC: %s\n' % options.enable_nvenc )