]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
tcl: fix path in Config.sh for sstate
authorRobert Yang <liezhi.yang@windriver.com>
Tue, 25 Mar 2014 08:34:14 +0000 (16:34 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 25 Mar 2014 10:00:08 +0000 (10:00 +0000)
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]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/tcltk/tcl_8.6.1.bb

index 79a3f083b6ea1ca57000e407e15a33ad400058cd..9d35da10a1c6b91dc7380d272b7cf56c2e8e007a 100644 (file)
@@ -90,3 +90,6 @@ do_install_ptest() {
        cp -r ${S}/../library ${D}${PTEST_PATH}
        cp -r ${S}/../tests ${D}${PTEST_PATH}
 }
+
+# Fix the path in sstate
+SSTATE_SCAN_FILES += "*Config.sh"