Skip to content

Commit

Permalink
package/cukinia: fix dependency on gawk
Browse files Browse the repository at this point in the history
gawk can't be selected when busybox is not available as gawk needs
wchar:

WARNING: unmet direct dependencies detected for BR2_PACKAGE_GAWK
  Depends on [n]: BR2_USE_WCHAR [=n] && BR2_USE_MMU [=y] && BR2_PACKAGE_BUSYBOX_SHOW_OTHERS [=y]
  Selected by [y]:
  - BR2_PACKAGE_CUKINIA [=y] && !BR2_PACKAGE_BUSYBOX [=n]

So replace this "select" by a "depends on", as already done by
BR2_PACKAGE_APPARMOR_UTILS_EXTRA

Fixes:
 - http://autobuild.buildroot.org/results/66dacfe7b0783c7df29052fff20f3e79ecbcf054

Signed-off-by: Fabrice Fontaine <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
ffontaine authored and tpetazzoni committed Oct 8, 2020
1 parent d7249f2 commit 14d76a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package/cukinia/Config.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config BR2_PACKAGE_CUKINIA
bool "cukinia"
select BR2_PACKAGE_GAWK if !BR2_PACKAGE_BUSYBOX
depends on BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_GAWK
help
Cukinia is designed to help Linux-based embedded firmware
developers run system-level validation tests on their product.
Expand All @@ -13,3 +13,6 @@ config BR2_PACKAGE_CUKINIA
integration with CI systems such as Jenkins.

https://github.com/savoirfairelinux/cukinia

comment "cukinia needs busybox or gawk"
depends on !(BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_GAWK)

0 comments on commit 14d76a9

Please sign in to comment.