summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-03-25 16:34:14 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-25 21:26:49 +0000
commitd385bf176fb0720d4ccaf7f696114207322d6bb6 (patch)
tree1c60a90bb101677b4d17eb806506eba0fccc8626
parent0e58578ae5e9d8c1cde95ee09973568bb00abd0e (diff)
downloadpoky-d385bf176fb0720d4ccaf7f696114207322d6bb6.tar.gz
tcl: fix path in Config.sh for sstate
We need fix the path in tclConfig.sh, tdbcConfig.sh and itclConfig.sh for sstate, otherwise there would be build failures when use the sstate across different builds. e.g., when building expect: [snip] tmp/sysroots/qemuarma9/usr/include/tcl8.6 checking for Tcl private include files... configure: error: Cannot find private header tclInt.h in /path/to/another/build/tmp/sysroots/qemuarma9/usr/include/tcl8.6.1 Configure failed. [snip] [YOCTO #6035] (From OE-Core rev: cd83e4a30311e4399c6c634fe06ec835a95a1c17) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/tcltk/tcl_8.6.1.bb3
1 files changed, 3 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 79a3f083b6..9d35da10a1 100644
--- a/meta/recipes-devtools/tcltk/tcl_8.6.1.bb
+++ b/meta/recipes-devtools/tcltk/tcl_8.6.1.bb
@@ -90,3 +90,6 @@ do_install_ptest() {
90 cp -r ${S}/../library ${D}${PTEST_PATH} 90 cp -r ${S}/../library ${D}${PTEST_PATH}
91 cp -r ${S}/../tests ${D}${PTEST_PATH} 91 cp -r ${S}/../tests ${D}${PTEST_PATH}
92} 92}
93
94# Fix the path in sstate
95SSTATE_SCAN_FILES += "*Config.sh"