summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk8
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2024-11-19 18:39:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-21 12:16:28 +0000
commitd43508969b25a81dc0a53096857ddaecb34f7866 (patch)
tree1d84a693b317b418f81cfb2a03df5d0fd5077a88 /meta/recipes-devtools/tcltk8
parent177db2d9f6623c446ad74ec852f3ab5ea64f8461 (diff)
downloadpoky-d43508969b25a81dc0a53096857ddaecb34f7866.tar.gz
tcl8: fix headers path
During the tcl_8.x removal[0] and its reintegration as tcl8_x[1], BPN has changed from tcl to tcl8. But, recipes that depends on tcl headers search the tcl8.6.15 directory where the current recipe generate a tcl88.6.15 ($BPN+$VERSION) directory. Fix this by hardcoding the base part of the directory name to "tcl". (From OE-Core rev: dd8461f27b4a55dbf79baa4a71dc08b127801181) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk8')
-rw-r--r--meta/recipes-devtools/tcltk8/tcl8_8.6.15.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/tcltk8/tcl8_8.6.15.bb b/meta/recipes-devtools/tcltk8/tcl8_8.6.15.bb
index 3902b3fe76..9d1c724d64 100644
--- a/meta/recipes-devtools/tcltk8/tcl8_8.6.15.bb
+++ b/meta/recipes-devtools/tcltk8/tcl8_8.6.15.bb
@@ -57,8 +57,8 @@ do_install() {
57 install -m 0755 tclConfig.sh ${D}${bindir_crossscripts} 57 install -m 0755 tclConfig.sh ${D}${bindir_crossscripts}
58 install -m 0755 tclConfig.sh ${D}${libdir} 58 install -m 0755 tclConfig.sh ${D}${libdir}
59 for dir in compat generic unix; do 59 for dir in compat generic unix; do
60 install -d ${D}${includedir}/${BPN}${VER}/$dir 60 install -d ${D}${includedir}/tcl${VER}/$dir
61 install -m 0644 ${S}/$dir/*.h ${D}${includedir}/${BPN}${VER}/$dir/ 61 install -m 0644 ${S}/$dir/*.h ${D}${includedir}/tcl${VER}/$dir/
62 done 62 done
63} 63}
64 64