diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-28 13:32:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-28 13:33:22 +0000 |
commit | 3cb519598d9ce044ccccb2d6a52a3c0933433501 (patch) | |
tree | 9a56929c36ce360d9884559ce9db5b63e6c89c84 /meta/recipes-devtools/tcltk | |
parent | 749d252475df090d51313cfbbe3f159db9f0566d (diff) | |
download | openembedded-core-contrib-3cb519598d9ce044ccccb2d6a52a3c0933433501.tar.gz |
tcl 8.5.11: fix packaging for native version
Fix an issue in the previous commit:
ERROR: Nothing RPROVIDES 'tcl-native-lib-native' (but virtual:native:/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly/build/meta/recipes-devtools/tcltk/tcl_8.5.11.bb RDEPENDS on or otherwise requires it)
NOTE: Runtime target 'tcl-native-lib-native' is unbuildable, removing.
by replacing ${PN}-lib with tcl-lib
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.5.11.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb index a9a41fba457..ef1b76d58d8 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://../license.terms;md5=a47a9be26d03f925fc1fbd2784f27e11 file://../win/license.terms;md5=a47a9be26d03f925fc1fbd2784f27e11 \ " -PR = "r3" +PR = "r4" BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ file://tcl-add-soname.patch" @@ -57,12 +57,12 @@ do_install() { done } -PACKAGES =+ "${PN}-lib" -FILES_${PN}-lib = "${libdir}/libtcl8.5.so*" +PACKAGES =+ "tcl-lib" +FILES_tcl-lib = "${libdir}/libtcl8.5.so*" FILES_${PN} += "${prefix}/lib/tcl8.5 ${prefix}/lib/tcl8" FILES_${PN}-dev += "${libdir}/tclConfig.sh" # isn't getting picked up by shlibs code -RDEPENDS_${PN} += "${PN}-lib" +RDEPENDS_${PN} += "tcl-lib" BBCLASSEXTEND = "native" |