summaryrefslogtreecommitdiff
path: root/package/sysdig
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@gmail.com>2016-01-01 21:02:21 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-01-01 22:00:51 +0100
commitecd0a2b5626410a434cea70db2b0e7d9bea9fe07 (patch)
tree82223a9286022e630171510aba15b2ab6cf69967 /package/sysdig
parent2a9ac68c9f259eda1a479315a4a37057981ea78b (diff)
package/sysdig: reorder select/depends
>From [1]: "Even though the ordering has absolutely no consequences in Kconfig, it is not logical (when reading). It is more logical and far easier to understand when depends come first, followed by the selects." Also, the Config.in exemple in the manual suggest to use this coding style [2]. [1] http://lists.busybox.net/pipermail/buildroot/2015-October/142955.html [2] http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-config-in Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/sysdig')
-rw-r--r--package/sysdig/Config.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/sysdig/Config.in b/package/sysdig/Config.in
index dc71d5f0c..151e75d5f 100644
--- a/package/sysdig/Config.in
+++ b/package/sysdig/Config.in
@@ -1,12 +1,12 @@
config BR2_PACKAGE_SYSDIG
bool "sysdig"
- select BR2_PACKAGE_ZLIB
- select BR2_PACKAGE_LUAJIT
- select BR2_PACKAGE_JSONCPP
depends on BR2_LINUX_KERNEL
depends on BR2_INSTALL_LIBSTDCPP # libjson
depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
depends on !BR2_STATIC_LIBS # luajit
+ select BR2_PACKAGE_ZLIB
+ select BR2_PACKAGE_LUAJIT
+ select BR2_PACKAGE_JSONCPP
help
Sysdig is open source, system-level exploration:
capture system state and activity from a running Linux instance,