mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
517c2cc88d
make ldconfig default to /lib+/usr/lib, /lib32+/usr/lib32 and /lib64+/usr/lib64 on bi-ABI architectures. (From OE-Core rev: c90bb98d4ac14562ef4882691daed3aaa9d08504) (From OE-Core rev: 44202d78102fa58ba99040a79d5a61c44033f57d) Signed-off-by: Ming Liu <ming.liu@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
838 B
BlitzBasic
33 lines
838 B
BlitzBasic
SUMMARY = "A standalone native ldconfig build"
|
|
|
|
LICENSE = "GPLv2+"
|
|
|
|
LIC_FILES_CHKSUM = "file://${S}/ldconfig.c;endline=17;md5=1d15f20937c055cb5de2329a4c054399"
|
|
|
|
SRC_URI = "file://ldconfig-native-2.12.1.tar.bz2 \
|
|
file://ldconfig.patch \
|
|
file://ldconfig_aux-cache_path_fix.patch \
|
|
file://32and64bit.patch \
|
|
file://endian-ness_handling.patch \
|
|
file://flag_fix.patch \
|
|
file://endianess-header.patch \
|
|
file://ldconfig-default-to-all-multilib-dirs.patch \
|
|
"
|
|
|
|
PR = "r2"
|
|
|
|
FILESPATH = "${FILE_DIRNAME}/${PN}-${PV}/"
|
|
|
|
inherit native
|
|
|
|
S = "${WORKDIR}/${PN}-${PV}"
|
|
|
|
do_compile () {
|
|
$CC ldconfig.c -std=gnu99 chroot_canon.c xmalloc.c xstrdup.c cache.c readlib.c -I. dl-cache.c -o ldconfig
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}/${bindir}/
|
|
install ldconfig ${D}/${bindir}/
|
|
}
|