[yocto] [meta-security][PATCH] xmlsec1: Allow native builds
jobol at nonadev.net
jobol at nonadev.net
Tue Jan 30 08:19:58 PST 2018
From: José Bollo <jose.bollo at iot.bzh>
When used in native builds, the variable STAGING_DIR_HOST expands
to the empty string. This leads 'sed' to an error because the pattern
is empty. Using STAGING_DIR instead of STAGING_DIR_HOST allows
to use xmlsec1 in native builds with the correct behaviour.
Change-Id: I55f40ac2413863c489d4219e0080f7e4e274a6db
Signed-off-by: José Bollo <jose.bollo at iot.bzh>
---
recipes-security/xmlsec1/xmlsec1_1.2.24.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-security/xmlsec1/xmlsec1_1.2.24.bb b/recipes-security/xmlsec1/xmlsec1_1.2.24.bb
index 9798ce2..a34539b 100644
--- a/recipes-security/xmlsec1/xmlsec1_1.2.24.bb
+++ b/recipes-security/xmlsec1/xmlsec1_1.2.24.bb
@@ -45,7 +45,7 @@ do_compile_ptest () {
}
do_install_append() {
- sed -i -e "s@${STAGING_DIR_HOST}@@g" ${D}${bindir}/xmlsec1-config
+ sed -i -e "s@${STAGING_DIR}@@g" ${D}${bindir}/xmlsec1-config
}
do_install_ptest () {
--
2.14.3
More information about the yocto
mailing list