]> granicus.if.org Git - handbrake/commitdiff
make: Tweak configure.py output language.
authorBradley Sepos <bradley@bradleysepos.com>
Sat, 13 Apr 2019 16:13:27 +0000 (12:13 -0400)
committerBradley Sepos <bradley@bradleysepos.com>
Sat, 13 Apr 2019 18:05:23 +0000 (14:05 -0400)
Internally, configure.py may use the terms host and build somewhat inappropriately, but that does not mean we should print such ambiguity.

make/configure.py

index d66d86f4258568b381606ef5190cb13596276d73..1d1ce0b8a13838b4639a3bedf354e1a02a6defd7 100644 (file)
@@ -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 )