summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/libxcrypt
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2023-09-11 01:37:45 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-12 07:43:39 +0100
commitdc0c7a8c3d1d4f02869b7f0d42f704fd24bf0dde (patch)
tree0f678a2d1c34322a584a35b0ca75877b5a73e1da /meta/recipes-core/libxcrypt
parent7b5fc42488a514bf51d49ee5274731c6432efd1b (diff)
downloadopenembedded-core-contrib-dc0c7a8c3d1d4f02869b7f0d42f704fd24bf0dde.tar.gz
libxcrypt-compat: Remove libcrypt.so to fix conflict with libcrypt
Fixed: IMAGE_INSTALL:append = " libxcrypt-compat" $ bitbake <image> -cpopulate_sdk file /usr/lib/libcrypt.so from install of libxcrypt-compat-dev-4.4.33-r0.0.aarch64 conflicts with file from package libcrypt-dev-4.4.33-r0.2.aarch64 Remove libcrypt.so like other files to fix the error. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/libxcrypt')
-rw-r--r--meta/recipes-core/libxcrypt/libxcrypt-compat_4.4.36.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/libxcrypt/libxcrypt-compat_4.4.36.bb b/meta/recipes-core/libxcrypt/libxcrypt-compat_4.4.36.bb
index ec9f9f4fa3..d5546ce9ba 100644
--- a/meta/recipes-core/libxcrypt/libxcrypt-compat_4.4.36.bb
+++ b/meta/recipes-core/libxcrypt/libxcrypt-compat_4.4.36.bb
@@ -13,6 +13,6 @@ API = "--enable-obsolete-api"
do_install:append () {
rm -rf ${D}${includedir}
rm -rf ${D}${libdir}/pkgconfig
+ rm -rf ${D}${libdir}/libcrypt.so
rm -rf ${D}${datadir}
}
-