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/wmctrl/Config.in | |
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/wmctrl/Config.in')
-rw-r--r-- | package/wmctrl/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/wmctrl/Config.in b/package/wmctrl/Config.in index bc09431ed4..37a1f25281 100644 --- a/package/wmctrl/Config.in +++ b/package/wmctrl/Config.in @@ -1,12 +1,12 @@ config BR2_PACKAGE_WMCTRL bool "wmctrl" - select BR2_PACKAGE_XLIB_LIBX11 - select BR2_PACKAGE_XLIB_LIBXMU - select BR2_PACKAGE_LIBGLIB2 depends on BR2_PACKAGE_XORG7 depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 depends on BR2_USE_MMU # libglib2 + select BR2_PACKAGE_XLIB_LIBX11 + select BR2_PACKAGE_XLIB_LIBXMU + select BR2_PACKAGE_LIBGLIB2 help Provides command line access to almost all the features defined in the EWMH specification. It can be used, for |