diff options
author | Bradley Sepos <[email protected]> | 2019-08-31 12:32:29 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-08-31 12:32:29 -0400 |
commit | 90853286b4b66b9c7794a12436fca46ab890738b (patch) | |
tree | 7a2427291fe5fd97de33a392a0bb11fe98b4fbf1 /make/configure.py | |
parent | d455488a6825aa2f015e1addb802ef98f4a5d0a3 (diff) |
make: Disable warning for AMD VCE on Linux.
Diffstat (limited to 'make/configure.py')
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index 7e4457fc2..b77d377d2 100644 --- a/make/configure.py +++ b/make/configure.py @@ -2093,7 +2093,7 @@ int main() stdout.write( 'Enable QSV: %s' % options.enable_qsv ) stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' ) stdout.write( 'Enable VCE: %s' % options.enable_vce ) - stdout.write( ' (%s)\n' % note_unsupported ) if not host_tuple.system == 'mingw' else stdout.write( '\n' ) + stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' ) if options.launch: stdout.write( '%s\n' % ('-' * 79) ) |