diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-05 05:47:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-21 13:02:58 +0100 |
commit | 28b6b281d384cfcb89bbcdeaa60a5dcf93dec105 (patch) | |
tree | 5d6ec03aa0836fa762caea58e95a1e2098a76199 /meta/recipes-devtools | |
parent | fbe245a9746eeb5675e3db7ce0d8e53b77a4ceea (diff) | |
download | poky-28b6b281d384cfcb89bbcdeaa60a5dcf93dec105.tar.gz |
libpng: clean up FILE after PACKAGE reorder
(From OE-Core rev: 3fddd5314b51946f9b02760ca7d847bb3107fefa)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/elfutils/elfutils_0.148.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.148.bb b/meta/recipes-devtools/elfutils/elfutils_0.148.bb index 225627ba92..90bc3081ab 100644 --- a/meta/recipes-devtools/elfutils/elfutils_0.148.bb +++ b/meta/recipes-devtools/elfutils/elfutils_0.148.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3\ | |||
6 | file://EXCEPTION;md5=570adcb0c1218ab57f2249c67d0ce417" | 6 | file://EXCEPTION;md5=570adcb0c1218ab57f2249c67d0ce417" |
7 | DEPENDS = "libtool bzip2 zlib" | 7 | DEPENDS = "libtool bzip2 zlib" |
8 | 8 | ||
9 | PR = "r7" | 9 | PR = "r8" |
10 | 10 | ||
11 | SRC_URI = "https://fedorahosted.org/releases/e/l/elfutils/elfutils-${PV}.tar.bz2" | 11 | SRC_URI = "https://fedorahosted.org/releases/e/l/elfutils/elfutils-${PV}.tar.bz2" |
12 | 12 | ||
@@ -74,8 +74,12 @@ FILES_${PN}-binutils = "\ | |||
74 | ${bindir}/eu-readelf \ | 74 | ${bindir}/eu-readelf \ |
75 | ${bindir}/eu-size \ | 75 | ${bindir}/eu-size \ |
76 | ${bindir}/eu-strip" | 76 | ${bindir}/eu-strip" |
77 | # Fix library issues | ||
78 | FILES_${PN} =+ "${libdir}/*-${PV}.so" | ||
79 | 77 | ||
80 | # The elfutils package contains symlinks that trip up insane | 78 | # Some packages have the version preceeding the .so instead properly |
79 | # versioned .so.<version>, so we need to reorder and repackage. | ||
80 | FILES_${PN} += "${libdir}/*-${PV}.so ${base_libdir}/*-${PV}.so" | ||
81 | FILES_SOLIBSDEV = "${libdir}/libasm.so ${libdir}/libdw.so ${libdir}/libelf.so" | ||
82 | |||
83 | # The package contains symlinks that trip up insane | ||
81 | INSANE_SKIP_${PN} = "dev-so" | 84 | INSANE_SKIP_${PN} = "dev-so" |
85 | |||