From patchwork Sun Jun 24 18:06:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: kconfig-frontends: Fix for recent packaging changes Date: Sun, 24 Jun 2012 18:06:58 -0000 From: Saul Wold X-Patchwork-Id: 30601 Message-Id: <1340561218-6934-1-git-send-email-sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org kconfig-frontends names it's shared library as -3.4.0.so instead of .so.3.4.0, this causes the -dev package to grab it since it matches on *.so. This error would also have shown up with the old PACKAGE order. Signed-off-by: Saul Wold --- .../kconfig-frontends/kconfig-frontends_3.4.bb | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.4.bb b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.4.bb index d95d3e8..4f95371 100644 --- a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.4.bb +++ b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.4.bb @@ -25,4 +25,10 @@ do_configure_prepend () { mkdir -p scripts/.autostuff/m4 } EXTRA_OECONF += "--disable-gconf --disable-qconf" + +# Some packages have the version preceeding the .so instead properly +# versioned .so., so we need to reorder and repackage. +SOLIBS = "-${PV}.so" +FILES_SOLIBSDEV = "${libdir}/libkconfig-parser.so" + BBCLASSEXTEND = "native nativesdk"