* [PATCH 0/1] tcl: fix sed command in do_install
@ 2016-05-24 3:15 Robert Yang
2016-05-24 3:15 ` [PATCH 1/1] " Robert Yang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Robert Yang @ 2016-05-24 3:15 UTC (permalink / raw)
To: openembedded-core
The following changes since commit d6241e4c94a0a72acfc57e96a59918c0b2146d65:
useradd: Fix infinite build loop (2016-05-23 10:33:39 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/tcl
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/tcl
Robert Yang (1):
tcl: fix sed command in do_install
meta/recipes-devtools/tcltk/tcl_8.6.4.bb | 2 --
1 file changed, 2 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] tcl: fix sed command in do_install
2016-05-24 3:15 [PATCH 0/1] tcl: fix sed command in do_install Robert Yang
@ 2016-05-24 3:15 ` Robert Yang
2016-06-19 4:42 ` [PATCH 0/1] " Robert Yang
2016-07-11 15:21 ` Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2016-05-24 3:15 UTC (permalink / raw)
To: openembedded-core
The -I= and -L= is used for cross compile, target doesn't need, and
binconfig.class can handle usr/bin/crossscripts/tclConfig.sh.
Fix do_configure error for the recipe which uses tclConfig.sh, for
example, postgresql.do_configure:
configure: error: header file <tcl.h> is required for Tcl
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-devtools/tcltk/tcl_8.6.4.bb | 2 --
1 file changed, 2 deletions(-)
diff --git a/meta/recipes-devtools/tcltk/tcl_8.6.4.bb b/meta/recipes-devtools/tcltk/tcl_8.6.4.bb
index 61be81d..14ca9ba 100644
--- a/meta/recipes-devtools/tcltk/tcl_8.6.4.bb
+++ b/meta/recipes-devtools/tcltk/tcl_8.6.4.bb
@@ -56,8 +56,6 @@ do_install() {
ln -sf tclsh8.6 ${D}${bindir}/tclsh${VER}
sed -i "s+-L${B}+-L${STAGING_LIBDIR}+g" 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 ${D}${bindir_crossscripts}
install -m 0755 tclConfig.sh ${D}${bindir_crossscripts}
install -m 0755 tclConfig.sh ${D}${libdir}
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/1] tcl: fix sed command in do_install
2016-05-24 3:15 [PATCH 0/1] tcl: fix sed command in do_install Robert Yang
2016-05-24 3:15 ` [PATCH 1/1] " Robert Yang
@ 2016-06-19 4:42 ` Robert Yang
2016-07-11 15:21 ` Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2016-06-19 4:42 UTC (permalink / raw)
To: openembedded-core
Ping.
meta-openembedded requires this:
commit 44ea80d3a3652741cefbbe02b29ed7be4696d914
Author: Martin Jansa <Martin.Jansa@gmail.com>
Date: Fri Jun 10 16:31:03 2016 +0200
postgresql: blacklist because tcl in oe-core is broken for last month
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
// Robert
On 05/24/2016 11:15 AM, Robert Yang wrote:
> The following changes since commit d6241e4c94a0a72acfc57e96a59918c0b2146d65:
>
> useradd: Fix infinite build loop (2016-05-23 10:33:39 +0100)
>
> are available in the git repository at:
>
> git://git.openembedded.org/openembedded-core-contrib rbt/tcl
> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/tcl
>
> Robert Yang (1):
> tcl: fix sed command in do_install
>
> meta/recipes-devtools/tcltk/tcl_8.6.4.bb | 2 --
> 1 file changed, 2 deletions(-)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/1] tcl: fix sed command in do_install
2016-05-24 3:15 [PATCH 0/1] tcl: fix sed command in do_install Robert Yang
2016-05-24 3:15 ` [PATCH 1/1] " Robert Yang
2016-06-19 4:42 ` [PATCH 0/1] " Robert Yang
@ 2016-07-11 15:21 ` Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2016-07-11 15:21 UTC (permalink / raw)
To: openembedded-core
Ping.
// Robert
On 05/24/2016 11:15 AM, Robert Yang wrote:
> The following changes since commit d6241e4c94a0a72acfc57e96a59918c0b2146d65:
>
> useradd: Fix infinite build loop (2016-05-23 10:33:39 +0100)
>
> are available in the git repository at:
>
> git://git.openembedded.org/openembedded-core-contrib rbt/tcl
> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/tcl
>
> Robert Yang (1):
> tcl: fix sed command in do_install
>
> meta/recipes-devtools/tcltk/tcl_8.6.4.bb | 2 --
> 1 file changed, 2 deletions(-)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-07-11 15:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-24 3:15 [PATCH 0/1] tcl: fix sed command in do_install Robert Yang
2016-05-24 3:15 ` [PATCH 1/1] " Robert Yang
2016-06-19 4:42 ` [PATCH 0/1] " Robert Yang
2016-07-11 15:21 ` Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox