diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-12-26 18:59:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 12:52:34 +0000 |
commit | 77fec45a4481702464fea38e75f6b64d7cc4425a (patch) | |
tree | 60cc89f5224ce62154ac87465259b661b6a9392d /meta/recipes-devtools | |
parent | e27f7d4908374858ae08914518e4320659ffb6c9 (diff) | |
download | poky-77fec45a4481702464fea38e75f6b64d7cc4425a.tar.gz |
tcl: Fix ${bindir}/tclsh symlink
* 8.6.1 version installs tclsh8.6 binary and tclsh symlink to tclsh${VER}
(tclsh8.6.1) which doesn't exist
lrwxrwxrwx 1 bitbake bitbake 12 Dec 26 16:19 sysroots/x86_64-linux/usr/bin/tclsh -> ./tclsh8.6.1
-rwxr-xr-x 2 bitbake bitbake 8.8K Dec 26 16:19 sysroots/x86_64-linux/usr/bin/tclsh8.6
* add another symlinks tclsh8.6.1 -> tclsh8.6
(From OE-Core rev: fe0e2d72d7e86f960cfb39342dcdd661a8b8a10b)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
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/tcltk/tcl_8.6.1.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.6.1.bb b/meta/recipes-devtools/tcltk/tcl_8.6.1.bb index be59ad1376..c5eb20581b 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.6.1.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.6.1.bb | |||
@@ -48,6 +48,7 @@ do_compile_prepend() { | |||
48 | do_install() { | 48 | do_install() { |
49 | autotools_do_install install-private-headers | 49 | autotools_do_install install-private-headers |
50 | ln -sf ./tclsh${VER} ${D}${bindir}/tclsh | 50 | ln -sf ./tclsh${VER} ${D}${bindir}/tclsh |
51 | ln -sf tclsh8.6 ${D}${bindir}/tclsh${VER} | ||
51 | sed -i "s+-L${B}+-L${STAGING_LIBDIR}+g" tclConfig.sh | 52 | sed -i "s+-L${B}+-L${STAGING_LIBDIR}+g" tclConfig.sh |
52 | sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh | 53 | sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh |
53 | sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh | 54 | sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh |