[oe-commits] Martin Jansa : tcl: Fix ${bindir}/tclsh symlink

git at git.openembedded.org git at git.openembedded.org
Thu Jan 2 12:53:32 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: fe0e2d72d7e86f960cfb39342dcdd661a8b8a10b
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=fe0e2d72d7e86f960cfb39342dcdd661a8b8a10b

Author: Martin Jansa <martin.jansa at gmail.com>
Date:   Thu Dec 26 18:59:00 2013 +0100

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

Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/recipes-devtools/tcltk/tcl_8.6.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/tcltk/tcl_8.6.1.bb b/meta/recipes-devtools/tcltk/tcl_8.6.1.bb
index be59ad1..c5eb205 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() {
 do_install() {
 	autotools_do_install install-private-headers
 	ln -sf ./tclsh${VER} ${D}${bindir}/tclsh
+	ln -sf tclsh8.6 ${D}${bindir}/tclsh${VER}
 	sed -i "s+-L${B}+-L${STAGING_LIBDIR}+g" tclConfig.sh
 	sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh
 	sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh



More information about the Openembedded-commits mailing list