Message ID | 20250620041255.2430106-1-jiaying.song.cn@windriver.com |
---|---|
State | New |
Headers | show |
Series | [meta-oe,walnascar] xmlsec1: avoid hardcoded ${RECIPE_SYSROOT} in xmlsec1-gnutls.pc | expand |
diff --git a/meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb b/meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb index 2fdfd55f24..0f4ae205b1 100644 --- a/meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb +++ b/meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb @@ -54,8 +54,11 @@ do_compile_ptest () { } do_install:append() { - for i in ${bindir}/xmlsec1-config ${libdir}/xmlsec1Conf.sh \ - ${libdir}/pkgconfig/xmlsec1-openssl.pc; do + for i in \ + ${bindir}/xmlsec1-config \ + ${libdir}/xmlsec1Conf.sh \ + ${libdir}/pkgconfig/xmlsec1-openssl.pc \ + ${libdir}/pkgconfig/xmlsec1-gnutls.pc; do sed -i -e "s@${RECIPE_SYSROOT}@@g" ${D}$i done }