mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
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. (From OE-Core rev: dc0c7a8c3d1d4f02869b7f0d42f704fd24bf0dde) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
358 B
BlitzBasic
19 lines
358 B
BlitzBasic
#
|
|
# This provides libcrypto.so.1 which contains obsolete APIs, needed for uninative in particular
|
|
#
|
|
|
|
require libxcrypt.inc
|
|
|
|
PROVIDES = ""
|
|
AUTO_LIBNAME_PKGS = ""
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
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}
|
|
}
|