Message ID | c62c900458294e3591e9f8f4e23a315e@diehl.com |
---|---|
State | Under Review |
Headers | show |
Series | [meta-oe] libp11-native: fix engine install | expand |
diff --git a/meta-oe/recipes-support/libp11/libp11_0.4.13.bb b/meta-oe/recipes-support/libp11/libp11_0.4.13.bb index 1731d350ae..807d079a05 100644 --- a/meta-oe/recipes-support/libp11/libp11_0.4.13.bb +++ b/meta-oe/recipes-support/libp11/libp11_0.4.13.bb @@ -19,6 +19,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "libp11-(?P<pver>\d+(\.\d+)+)" inherit autotools pkgconfig EXTRA_OECONF = "--disable-static" +EXTRA_OECONF:append:class-native = " --with-enginesdir=${RECIPE_SYSROOT_NATIVE}/usr/lib/engines-3" do_install:append () { rm -rf ${D}${docdir}/${BPN}
openssl-native is compiled with a engine path /not/builtin and the config file provides the actual path. The configure script looks up this not working path. To make it work, provide the runtime path via configure argument. Signed-off-by: Denis OSTERLAND-HEIM <denis.osterland@diehl.com> --- meta-oe/recipes-support/libp11/libp11_0.4.13.bb | 1 + 1 file changed, 1 insertion(+)