summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2019-10-13 14:35:34 -0400
committerBradley Sepos <[email protected]>2019-10-13 14:35:41 -0400
commit19088348e2f397defd92ee554b283b8b681d2517 (patch)
tree67ccb8407f4fd88930c607978072185b55fa99d7 /make/configure.py
parent4a75f67486474b024d2264481cbe9e172a3e98f4 (diff)
make: Print unsupported status of FFmpeg AAC on Darwin/macOS in configure.py.
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index 894f52b77..16c7e513e 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -2120,7 +2120,7 @@ int main()
stdout.write( ' (%s)\n' % note_unsupported ) if not host_tuple.system == 'darwin' else stdout.write( '\n' )
stdout.write( 'Enable FDK-AAC: %s\n' % options.enable_fdk_aac )
stdout.write( 'Enable FFmpeg AAC: %s' % options.enable_ffmpeg_aac )
- stdout.write( ' (%s)\n' % note_required ) if host_tuple.system != 'darwin' else stdout.write( '\n' )
+ stdout.write( ' (%s)\n' % note_unsupported ) if host_tuple.system == 'darwin' else stdout.write( ' (%s)\n' % note_required )
stdout.write( 'Enable NVENC: %s' % options.enable_nvenc )
stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' )
stdout.write( 'Enable QSV: %s' % options.enable_qsv )