From 49ecabe4bf64f3bb2a04d1b042272fec245b85e1 Mon Sep 17 00:00:00 2001 From: Isaac Hermida Date: Thu, 22 Feb 2018 16:06:47 +0100 Subject: [PATCH] dey-examples-cryptochip: inherit pkgconfig With the migration from dey-2.2 to dey-2.4, now it is mandatory to include all required applications for compilation. This fixes the next error: | make: pkg-config: Command not found | main.c:20:10: fatal error: cryptoauthlib.h: No such file or directory | #include https://jira.digi.com/browse/DEL-5710 Signed-off-by: Isaac Hermida --- .../recipes-digi/dey-examples/dey-examples-cryptochip.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-digi-dey/recipes-digi/dey-examples/dey-examples-cryptochip.bb b/meta-digi-dey/recipes-digi/dey-examples/dey-examples-cryptochip.bb index 0f71a4f42..73d8f2b6d 100644 --- a/meta-digi-dey/recipes-digi/dey-examples/dey-examples-cryptochip.bb +++ b/meta-digi-dey/recipes-digi/dey-examples/dey-examples-cryptochip.bb @@ -19,6 +19,8 @@ SRC_URI = "${CC_GIT_URI};branch=${SRCBRANCH}" S = "${WORKDIR}/git/cryptochip-get-random" +inherit pkgconfig + do_install() { oe_runmake DESTDIR=${D} install }