diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2025-07-08 12:51:54 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-07-09 09:16:04 -0700 |
commit | 8f6d4090e2df568c498b51f6dfbe92e0942a1e73 (patch) | |
tree | 5524d58c6fc517e9fa361f48437b4822a9db4007 | |
parent | 6914e20d63ab1c4378fc23ebd71b000be5fa131a (diff) | |
download | meta-openembedded-8f6d4090e2df568c498b51f6dfbe92e0942a1e73.tar.gz |
xmlsec1: fix build with gnutls or openssl PACKAGECONFIG not enabled
the .pc files might not be installed based on the PACKAGECONFIG
value
fixes:
https://git.openembedded.org/meta-openembedded/commit/?id=cce20b5124e28ee55adf03fe062084f38d065580
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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 0f4ae205b1..3e97bde86c 100644 --- a/meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb +++ b/meta-oe/recipes-support/xmlsec1/xmlsec1_1.3.7.bb | |||
@@ -59,7 +59,7 @@ do_install:append() { | |||
59 | ${libdir}/xmlsec1Conf.sh \ | 59 | ${libdir}/xmlsec1Conf.sh \ |
60 | ${libdir}/pkgconfig/xmlsec1-openssl.pc \ | 60 | ${libdir}/pkgconfig/xmlsec1-openssl.pc \ |
61 | ${libdir}/pkgconfig/xmlsec1-gnutls.pc; do | 61 | ${libdir}/pkgconfig/xmlsec1-gnutls.pc; do |
62 | sed -i -e "s@${RECIPE_SYSROOT}@@g" ${D}$i | 62 | [ -f ${D}$i ] && sed -i -e "s@${RECIPE_SYSROOT}@@g" ${D}$i || true |
63 | done | 63 | done |
64 | } | 64 | } |
65 | 65 | ||