diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-23 16:54:29 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-23 16:54:29 +0000 |
commit | 87590b264974a81c58b3a0f55415198bb8e4837a (patch) | |
tree | 2802908d891d86da94babfc1fe7113e747dc2136 /meta/packages/glibc/ldconfig-native_2.5.bb | |
parent | 90e20ec7564715f3bd703b1a7f7f70f15af5b813 (diff) | |
download | poky-87590b264974a81c58b3a0f55415198bb8e4837a.tar.gz |
Add ldconfig-native
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3217 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/glibc/ldconfig-native_2.5.bb')
-rw-r--r-- | meta/packages/glibc/ldconfig-native_2.5.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/packages/glibc/ldconfig-native_2.5.bb b/meta/packages/glibc/ldconfig-native_2.5.bb new file mode 100644 index 0000000000..c221ba1608 --- /dev/null +++ b/meta/packages/glibc/ldconfig-native_2.5.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | DESCRIPTION = "A standalone native ldconfig build" | ||
2 | |||
3 | SRC_URI = "file://ldconfig-native-2.5.tar.bz2 \ | ||
4 | file://ldconfig.patch;patch=1 " | ||
5 | |||
6 | inherit native | ||
7 | |||
8 | do_compile () { | ||
9 | $CC ldconfig.c -std=gnu99 chroot_canon.c xmalloc.c xstrdup.c cache.c readlib.c -I. dl-cache.c -o ldconfig | ||
10 | } | ||
11 | |||
12 | do_stage () { | ||
13 | install -d ${STAGING_BINDIR}/ | ||
14 | install ldconfig ${STAGING_BINDIR}/ | ||
15 | } | ||