diff options
author | Bradley Sepos <[email protected]> | 2019-04-13 12:13:27 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-04-13 14:05:23 -0400 |
commit | 927a8630a7eeb4606ac7d3d576e257296a68c972 (patch) | |
tree | c4acf722fa98cc811a947b200814973deb3db78c /make | |
parent | f24c6f3921078692aeb2e1bb691cdd3bd3d263e9 (diff) |
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.
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 6 |
1 files changed, 3 insertions, 3 deletions
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 ) |