From aedbec5ea3d958c18e8cfd5dead5d37a060bfcec Mon Sep 17 00:00:00 2001 From: José Bollo Date: Tue, 30 Jan 2018 17:19:58 +0100 Subject: xmlsec1: Allow native builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Armin Kuster --- 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 () { -- cgit v1.2.3-54-g00ecf