generic-poky/meta/packages/glibc/ldconfig-native_2.5.bb
Richard Purdie 87590b2649 Add ldconfig-native
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3217 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-11-23 16:54:29 +00:00

16 lines
371 B
BlitzBasic

DESCRIPTION = "A standalone native ldconfig build"
SRC_URI = "file://ldconfig-native-2.5.tar.bz2 \
file://ldconfig.patch;patch=1 "
inherit native
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_stage () {
install -d ${STAGING_BINDIR}/
install ldconfig ${STAGING_BINDIR}/
}