mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
This patch upgrades to the 4.4.19 release and replaces a configure patch from "libxcrypt: fix sporadic failures in nativesdk-libxcrypt-compat" with a fix to avoid leading spaces in CFLAGS causing failures. The license changed a few filenames listed in the license but the overall license remains unchanged. (From OE-Core rev: 7a2144f065c913ef189011b94d90de4dde51a347) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
325 B
BlitzBasic
19 lines
325 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}${datadir}
|
|
}
|
|
|