diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:09 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-02 14:46:49 +0200 |
| commit | 83b27df7685bfdbffd3406f377a84bd9e19dd91a (patch) | |
| tree | cfc7f778d75de0d11f7ade5875027855144e30b5 /package/weston | |
| parent | 759fb83b46035ea48ec9e7d58f98eaa72d03ccc8 (diff) | |
| download | buildroot-83b27df7685bfdbffd3406f377a84bd9e19dd91a.tar.gz buildroot-83b27df7685bfdbffd3406f377a84bd9e19dd91a.zip | |
package/w*/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 w 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/weston')
| -rw-r--r-- | package/weston/Config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/weston/Config.in b/package/weston/Config.in index b4e198d8f0..454a14d39e 100644 --- a/package/weston/Config.in +++ b/package/weston/Config.in @@ -5,6 +5,11 @@ comment "weston needs udev and a toolchain w/ locale, threads, dynamic library, config BR2_PACKAGE_WESTON bool "weston" + depends on BR2_ENABLE_LOCALE # libinput + depends on BR2_PACKAGE_HAS_UDEV + depends on !BR2_STATIC_LIBS # wayland + depends on BR2_TOOLCHAIN_HAS_THREADS # wayland + depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 select BR2_PACKAGE_WAYLAND select BR2_PACKAGE_WAYLAND_PROTOCOLS select BR2_PACKAGE_LIBXKBCOMMON @@ -14,11 +19,6 @@ config BR2_PACKAGE_WESTON select BR2_PACKAGE_JPEG select BR2_PACKAGE_MTDEV select BR2_PACKAGE_LIBINPUT - depends on BR2_ENABLE_LOCALE # libinput - depends on BR2_PACKAGE_HAS_UDEV - depends on !BR2_STATIC_LIBS # wayland - depends on BR2_TOOLCHAIN_HAS_THREADS # wayland - depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # Runtime dependency select BR2_PACKAGE_XKEYBOARD_CONFIG # Make sure at least one compositor is selected. |

