diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-02-17 19:20:49 +0000 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-02-17 19:20:49 +0000 |
commit | 02dfa64c088c87367c298a3f648454204656734f (patch) | |
tree | 7daeba09a907abe8f5f08b89d793f543004752c3 | |
parent | 38ed528fa5fe5cd1f47edb70090f65958fb1e8ce (diff) | |
download | ffmpeg-02dfa64c088c87367c298a3f648454204656734f.tar.gz |
configure: Don't enable examples when --disable-everything is used
This resotres old behavior.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3235,7 +3235,7 @@ for opt do ;; --disable-everything) map 'eval disable \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST - enable_deep_force $EXAMPLE_LIST $(filter_out avresample $LIBRARY_LIST) $PROGRAM_LIST + enable_deep_force $(filter_out avresample $LIBRARY_LIST) $PROGRAM_LIST ;; --disable-all) map 'eval disable \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST @@ -3305,7 +3305,7 @@ disabled logging && logfile=/dev/null # Enable the default components if not disabled explicitly -enable_weak $EXAMPLE_LIST $(filter_out avresample $LIBRARY_LIST) $PROGRAM_LIST +enable_weak $(filter_out avresample $LIBRARY_LIST) $PROGRAM_LIST # Disable all the library-specific components if the library itself # is disabled, see AVCODEC_LIST and following _LIST variables. |