diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2012-08-08 13:11:17 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-15 14:26:38 +0100 |
commit | 0452d8b2a066688c2c36135be83186196550fbb2 (patch) | |
tree | 70dd7a67ca892286cc21cac914992ebaaf31b583 /meta | |
parent | 8472a79966a29e4d2ea4da51052567608c1e3a99 (diff) | |
download | poky-0452d8b2a066688c2c36135be83186196550fbb2.tar.gz |
tcl: uncomment a line that causing TCL_SRC_DIR point to the workdir.
The line 'sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh'
is commented somehow in previous commit, so that TCL_SRC_DIR
point to the tcl workdir which will cause package that use it
fail to configure or compile when the tcl workdir is removed,
so uncomment it back.
(From OE-Core rev: 1037c80f63922ffdec54b0eade80ec0e89062b22)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.5.11.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb index f19e25a7de..e5fe7d35c0 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb | |||
@@ -46,7 +46,7 @@ do_install() { | |||
46 | autotools_do_install | 46 | autotools_do_install |
47 | oe_libinstall -so libtcl8.5 ${STAGING_LIBDIR} | 47 | oe_libinstall -so libtcl8.5 ${STAGING_LIBDIR} |
48 | ln -sf ./tclsh8.5 ${D}${bindir}/tclsh | 48 | ln -sf ./tclsh8.5 ${D}${bindir}/tclsh |
49 | #sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh | 49 | sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh |
50 | sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh | 50 | sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh |
51 | sed -i "s,-I${includedir},-I=${includedir},g" tclConfig.sh | 51 | sed -i "s,-I${includedir},-I=${includedir},g" tclConfig.sh |
52 | install -d ${D}${bindir_crossscripts} | 52 | install -d ${D}${bindir_crossscripts} |