buildroot/package/cukinia/Config.in
Fabrice Fontaine 14d76a9bb2 package/cukinia: fix dependency on gawk
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 <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-10-08 21:47:28 +02:00

19 lines
691 B
Plaintext

config BR2_PACKAGE_CUKINIA
bool "cukinia"
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.
It provides a simple POSIX shell overlay, and primitives to
make sure system integrations and features keep behaving the
way they should.
By default, cukinia reports colorized test results on stdout,
but can also report them as CSV and JUnit-XML for easy
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)