Coreutils provides 'comm' command which is called during do_compile() from scripts/check-config.sh. This fixes following issues which are otherwise quietly ignored:
.../scripts/check-config.sh: line 33: comm: command not found .../scripts/check-config.sh: line 38: comm: command not found Signed-off-by: Niko Mauno <[email protected]> --- meta/recipes-bsp/u-boot/u-boot_2017.01.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-bsp/u-boot/u-boot_2017.01.bb b/meta/recipes-bsp/u-boot/u-boot_2017.01.bb index 37c21dcaa3..8b00a8d294 100644 --- a/meta/recipes-bsp/u-boot/u-boot_2017.01.bb +++ b/meta/recipes-bsp/u-boot/u-boot_2017.01.bb @@ -1,4 +1,4 @@ require u-boot-common_${PV}.inc require u-boot.inc -DEPENDS += "bc-native dtc-native" +DEPENDS += "bc-native coreutils-native dtc-native" -- 2.11.0 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
