diff options
author | Yao Zhao <yao.zhao@windriver.com> | 2012-07-18 12:42:35 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-18 22:24:10 +0100 |
commit | d454f8055b21c4d01dd1e2faf1625e2a1e5c25f2 (patch) | |
tree | d3a6dda46069bcc251de9d4e7bde907ef05871fc /meta/recipes-devtools/tcltk | |
parent | cd108a55ea58501e91923f348edca9ba736933c7 (diff) | |
download | openembedded-core-d454f8055b21c4d01dd1e2faf1625e2a1e5c25f2.tar.gz openembedded-core-d454f8055b21c4d01dd1e2faf1625e2a1e5c25f2.tar.bz2 openembedded-core-d454f8055b21c4d01dd1e2faf1625e2a1e5c25f2.zip |
tcl: fix tcl INCLUDE_SPEC and LIB_SPEC
TCL_INCLUDE_SPEC -I/usr/include will cause problems cross configure/compile
TCL_LIB_SPEC -L${libdir} will cause problems too when link.
Signed-off-by: Yao Zhao <yao.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.5.11.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb index 1d43371209..d5cf6dc167 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.5.11.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.5.11.bb @@ -46,8 +46,9 @@ do_install() { autotools_do_install oe_libinstall -so libtcl8.5 ${STAGING_LIBDIR} ln -sf ./tclsh8.5 ${D}${bindir}/tclsh - sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh - sed -i "s,-L${libdir},," tclConfig.sh + #sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh + sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh + sed -i "s,-I${includedir},-I=${includedir},g" tclConfig.sh install -d ${STAGING_BINDIR_CROSS}/ install -m 0755 tclConfig.sh ${STAGING_BINDIR_CROSS} cd .. |