All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tcl: adapt to potential psuedo changes
@ 2020-10-21  9:24 Yu, Mingli
  2020-10-21 10:11 ` [OE-core] " Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Yu, Mingli @ 2020-10-21  9:24 UTC (permalink / raw)
  To: openembedded-core

From: Mingli Yu <mingli.yu@windriver.com>

It failed as below when rerun do_install for tcl:
 $ bitbake tcl
 $ bitbake tcl -f -cinstall
[snip]
 | NOTE: make -j 72 DESTDIR=/build/tmp/work/core2-64-wrs-linux/tcl/8.6.10-r0/image install
 | abort()ing pseudo client by server request. See https://wiki.yoctoproject.org/wiki/Pseudo_Abort for more details on this.
 | /build/tmp/work/core2-64-wrs-linux/tcl/8.6.10-r0/temp/run.do_install.3490694: line 184: 3499214 Aborted                 (core dumped) make -j 72 "$@"

Though unpack tcl source to ${WORKDIR}/${BPN}${PV}, but we set
S as below:
 S = "${WORKDIR}/${BPN}${PV}/unix"

Exclude ${WORKDIR}/${BPN}${PV} from pseudo database to fix the
above do_install failure.

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta/recipes-devtools/tcltk/tcl_8.6.10.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/tcltk/tcl_8.6.10.bb b/meta/recipes-devtools/tcltk/tcl_8.6.10.bb
index aedd96b021..e6feb25a7e 100644
--- a/meta/recipes-devtools/tcltk/tcl_8.6.10.bb
+++ b/meta/recipes-devtools/tcltk/tcl_8.6.10.bb
@@ -32,6 +32,7 @@ SRC_URI_class-native = "${BASE_SRC_URI}"
 
 S = "${WORKDIR}/${BPN}${PV}/unix"
 
+PSEUDO_IGNORE_PATHS .= ",${WORKDIR}/${BPN}${PV}"
 VER = "${PV}"
 
 inherit autotools ptest binconfig update-alternatives
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-10-22  3:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-21  9:24 [PATCH] tcl: adapt to potential psuedo changes Yu, Mingli
2020-10-21 10:11 ` [OE-core] " Martin Jansa
2020-10-21 10:41   ` Richard Purdie
2020-10-22  3:16     ` Yu, Mingli
2020-10-22  3:27     ` [PATCH v2] tcl: adapt to potential pseudo changes Yu, Mingli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.