diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:17:53 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-29 21:17:55 +0200 |
| commit | f7e7bf72a7ddbd72041090ae6ba97778f7b96948 (patch) | |
| tree | e0fd4753eefecdf47aa8c6252b6e98cec59b9dd3 /package/ffmpeg | |
| parent | a3a1aa680bb1effdf0e2b71f966105fc84b5d1b6 (diff) | |
| download | buildroot-f7e7bf72a7ddbd72041090ae6ba97778f7b96948.tar.gz buildroot-f7e7bf72a7ddbd72041090ae6ba97778f7b96948.zip | |
package/f*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files. This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter f in the package directory.
The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ffmpeg')
| -rw-r--r-- | package/ffmpeg/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in index b5850db722..383374ddbe 100644 --- a/package/ffmpeg/Config.in +++ b/package/ffmpeg/Config.in @@ -40,9 +40,9 @@ config BR2_PACKAGE_FFMPEG_FFMPEG config BR2_PACKAGE_FFMPEG_FFPLAY bool "Build ffplay" + depends on !BR2_STATIC_LIBS # sdl2 select BR2_PACKAGE_FFMPEG_SWSCALE select BR2_PACKAGE_SDL2 - depends on !BR2_STATIC_LIBS # sdl2 help FFplay is a very simple and portable media player using the FFmpeg libraries and the SDL library. |

