diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-03 14:47:46 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-03 14:47:46 +0000 |
commit | 4831d5f3ed012aa3f82c95f20e3da61ea37be1df (patch) | |
tree | 2a62fdf6693b52f1bf7431a0a84e0e92e014c083 /meta/packages/elfutils | |
parent | f403f6ef108e7583608b4ecac067d4e5d60dd25a (diff) | |
download | poky-4831d5f3ed012aa3f82c95f20e3da61ea37be1df.tar.gz |
elfutils: Fix -dev package and split binutils overlap into elfutils-binutils package
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2682 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/elfutils')
-rw-r--r-- | meta/packages/elfutils/elfutils_0.108.bb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/packages/elfutils/elfutils_0.108.bb b/meta/packages/elfutils/elfutils_0.108.bb index a1f7b2fc5c..67a7596635 100644 --- a/meta/packages/elfutils/elfutils_0.108.bb +++ b/meta/packages/elfutils/elfutils_0.108.bb | |||
@@ -2,12 +2,25 @@ SECTION = "base" | |||
2 | LICENSE = "OSL" | 2 | LICENSE = "OSL" |
3 | DESCRIPTION = "A collection of utilities and DSOs to handle compiled objects." | 3 | DESCRIPTION = "A collection of utilities and DSOs to handle compiled objects." |
4 | DEPENDS = "libtool" | 4 | DEPENDS = "libtool" |
5 | PR = "r1" | ||
5 | 6 | ||
6 | SRC_URI = "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/elfutils-${PV}.tar.gz \ | 7 | SRC_URI = "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/elfutils-${PV}.tar.gz \ |
7 | file://warnings.patch;patch=1" | 8 | file://warnings.patch;patch=1" |
8 | 9 | ||
9 | inherit autotools | 10 | inherit autotools |
10 | 11 | ||
12 | # Package binaries that overlap with binutils separately | ||
13 | PACKAGES =+ "${PN}-binutils" | ||
14 | FILES_${PN}-binutils = "\ | ||
15 | ${bindir}/addr2line \ | ||
16 | ${bindir}/ld \ | ||
17 | ${bindir}/nm \ | ||
18 | ${bindir}/readelf \ | ||
19 | ${bindir}/size \ | ||
20 | ${bindir}/strip" | ||
21 | # Fix library issues | ||
22 | FILES_${PN} =+ "${libdir}/*-${PV}.so" | ||
23 | |||
11 | SOV = "${PV}" | 24 | SOV = "${PV}" |
12 | do_stage () { | 25 | do_stage () { |
13 | install -m 0644 libelf/libelf.a ${STAGING_LIBDIR}/libelf.a | 26 | install -m 0644 libelf/libelf.a ${STAGING_LIBDIR}/libelf.a |