summaryrefslogtreecommitdiffstats
path: root/package/libsigrok
diff options
context:
space:
mode:
authorAdam Duskett <Aduskett@gmail.com>2017-04-22 13:17:58 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-01 11:51:23 +0200
commit190b2b409ccf1ccf6b1f701d3d2a033c747ac013 (patch)
tree5acb334a6575aec4c2222c30218cfe2efc0dc9eb /package/libsigrok
parent6acd0a542e2d3aef2b65d3cabcb43561a9a8e8e2 (diff)
downloadbuildroot-190b2b409ccf1ccf6b1f701d3d2a033c747ac013.tar.gz
buildroot-190b2b409ccf1ccf6b1f701d3d2a033c747ac013.zip
package/l*/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 l 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/libsigrok')
-rw-r--r--package/libsigrok/Config.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libsigrok/Config.in b/package/libsigrok/Config.in
index ff2d249827..d2d022ebf1 100644
--- a/package/libsigrok/Config.in
+++ b/package/libsigrok/Config.in
@@ -1,13 +1,13 @@
config BR2_PACKAGE_LIBSIGROK
bool "libsigrok"
- select BR2_PACKAGE_LIBZIP
- select BR2_PACKAGE_LIBGLIB2
# libglib2
depends on BR2_USE_WCHAR
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU
# std=c11
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
+ select BR2_PACKAGE_LIBZIP
+ select BR2_PACKAGE_LIBGLIB2
help
Libsigrok is a shared library written in C, which provides
the basic hardware access drivers for logic analyzers and
@@ -22,9 +22,9 @@ if BR2_PACKAGE_LIBSIGROK
config BR2_PACKAGE_LIBSIGROKCXX
bool "build C++ bindings"
- select BR2_PACKAGE_GLIBMM
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # glibmm
+ select BR2_PACKAGE_GLIBMM
help
Build libsigrok C++ bindings as well.
OpenPOWER on IntegriCloud