diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2025-07-08 12:52:19 +0200 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2025-07-27 14:35:10 -0400 |
| commit | 832d2ca96c0be14353db9313e87d6d0637e07583 (patch) | |
| tree | f6f0e5b47f015f58053b54801e7c330182eabffc | |
| parent | c009244a045923a9dfc32d7f2996cb61629870f6 (diff) | |
| download | meta-openembedded-832d2ca96c0be14353db9313e87d6d0637e07583.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: Armin Kuster <akuster808@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 | ||
