diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-02-28 08:58:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-28 12:27:52 +0000 |
commit | 2902bbe44f8571907530eae596e271cc8dff4c1a (patch) | |
tree | ae0a3bd2df3e2053fdb89c0c89a02d190b0be346 /meta/recipes-devtools | |
parent | 695a609057123c08b47f2133af05e74ff522d88f (diff) | |
download | poky-2902bbe44f8571907530eae596e271cc8dff4c1a.tar.gz |
tcl 8.5.11: fix packaging
Include /usr/lib/tcl8 for the msgcat and test module, force dependency on tcl-lib since shlibs isn't picking it up.
(From OE-Core rev: 77eaa55d94e8ce73aa3c43b1f068d6ad4cf20e80)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.5.11.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb index 146021a4ac..a9a41fba45 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 | |||
11 | file://../win/license.terms;md5=a47a9be26d03f925fc1fbd2784f27e11 \ | 11 | file://../win/license.terms;md5=a47a9be26d03f925fc1fbd2784f27e11 \ |
12 | " | 12 | " |
13 | 13 | ||
14 | PR = "r2" | 14 | PR = "r3" |
15 | 15 | ||
16 | BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ | 16 | BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ |
17 | file://tcl-add-soname.patch" | 17 | file://tcl-add-soname.patch" |
@@ -59,7 +59,10 @@ do_install() { | |||
59 | 59 | ||
60 | PACKAGES =+ "${PN}-lib" | 60 | PACKAGES =+ "${PN}-lib" |
61 | FILES_${PN}-lib = "${libdir}/libtcl8.5.so*" | 61 | FILES_${PN}-lib = "${libdir}/libtcl8.5.so*" |
62 | FILES_${PN} += "${prefix}/lib/tcl8.5" | 62 | FILES_${PN} += "${prefix}/lib/tcl8.5 ${prefix}/lib/tcl8" |
63 | FILES_${PN}-dev += "${libdir}/tclConfig.sh" | 63 | FILES_${PN}-dev += "${libdir}/tclConfig.sh" |
64 | 64 | ||
65 | # isn't getting picked up by shlibs code | ||
66 | RDEPENDS_${PN} += "${PN}-lib" | ||
67 | |||
65 | BBCLASSEXTEND = "native" | 68 | BBCLASSEXTEND = "native" |