diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-05 05:47:02 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-06-19 21:59:51 -0700 |
commit | 3fddd5314b51946f9b02760ca7d847bb3107fefa (patch) | |
tree | 8f197242a2b1c8090bf7c62d550f769467f3684c /meta/recipes-devtools | |
parent | da10929059a4aba232d904d7a0d0a54715126c83 (diff) | |
download | openembedded-core-3fddd5314b51946f9b02760ca7d847bb3107fefa.tar.gz openembedded-core-3fddd5314b51946f9b02760ca7d847bb3107fefa.tar.bz2 openembedded-core-3fddd5314b51946f9b02760ca7d847bb3107fefa.zip |
libpng: clean up FILE after PACKAGE reorder
Signed-off-by: Saul Wold <sgw@linux.intel.com>
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\ file://EXCEPTION;md5=570adcb0c1218ab57f2249c67d0ce417" DEPENDS = "libtool bzip2 zlib" -PR = "r7" +PR = "r8" SRC_URI = "https://fedorahosted.org/releases/e/l/elfutils/elfutils-${PV}.tar.bz2" @@ -74,8 +74,12 @@ FILES_${PN}-binutils = "\ ${bindir}/eu-readelf \ ${bindir}/eu-size \ ${bindir}/eu-strip" -# Fix library issues -FILES_${PN} =+ "${libdir}/*-${PV}.so" -# The elfutils package contains symlinks that trip up insane +# Some packages have the version preceeding the .so instead properly +# versioned .so.<version>, so we need to reorder and repackage. +FILES_${PN} += "${libdir}/*-${PV}.so ${base_libdir}/*-${PV}.so" +FILES_SOLIBSDEV = "${libdir}/libasm.so ${libdir}/libdw.so ${libdir}/libelf.so" + +# The package contains symlinks that trip up insane INSANE_SKIP_${PN} = "dev-so" + |