diff options
author | Alexander Kanavin <alex@linutronix.de> | 2024-11-12 14:59:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-14 11:56:53 +0000 |
commit | df62e8824a0f624239563c2a33e018a96d4f8770 (patch) | |
tree | cb19607a762d3774ca2771a6555f4af89ed7ace7 | |
parent | 9d739fd0426f5bf2f462d03c0c7bf1944f949fb5 (diff) | |
download | poky-df62e8824a0f624239563c2a33e018a96d4f8770.tar.gz |
tcl: correctly symlink tclsh to 9.0 version
(From OE-Core rev: 5875448ae501e40627ed291ad93c129d6c7288e0)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_9.0.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_9.0.0.bb b/meta/recipes-devtools/tcltk/tcl_9.0.0.bb index b3968b5be1..a6e1dfbb5b 100644 --- a/meta/recipes-devtools/tcltk/tcl_9.0.0.bb +++ b/meta/recipes-devtools/tcltk/tcl_9.0.0.bb | |||
@@ -47,7 +47,7 @@ do_install() { | |||
47 | autotools_do_install | 47 | autotools_do_install |
48 | oe_runmake 'DESTDIR=${D}' install-private-headers | 48 | oe_runmake 'DESTDIR=${D}' install-private-headers |
49 | ln -sf ./tclsh${VER} ${D}${bindir}/tclsh | 49 | ln -sf ./tclsh${VER} ${D}${bindir}/tclsh |
50 | ln -sf tclsh8.6 ${D}${bindir}/tclsh${VER} | 50 | ln -sf tclsh9.0 ${D}${bindir}/tclsh${VER} |
51 | sed -i "s;-L${B};-L${STAGING_LIBDIR};g" tclConfig.sh | 51 | sed -i "s;-L${B};-L${STAGING_LIBDIR};g" tclConfig.sh |
52 | sed -i "s;'${WORKDIR};'${STAGING_INCDIR};g" tclConfig.sh | 52 | sed -i "s;'${WORKDIR};'${STAGING_INCDIR};g" tclConfig.sh |
53 | install -d ${D}${bindir_crossscripts} | 53 | install -d ${D}${bindir_crossscripts} |