Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] libpcre: fix occasionally do_package_write_rpm error
@ 2020-08-28  6:14 Changqing Li
  2020-09-01 11:08 ` [OE-core] " Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Changqing Li @ 2020-08-28  6:14 UTC (permalink / raw)
  To: openembedded-core

From: Changqing Li <changqing.li@windriver.com>

Error info:
ERROR: libpcre-8.44-r0 do_package_write_rpm: Failure expanding variable
SUMMARY_libpcrecpp, expression was ${SUMMARY} - C++ wrapper functions
which triggered exception RecursionError: maximum recursion depth
exceeded while calling a Python object

this error is hard to reproduce, only met one time. Seems expand SUMMARY
with reference to SUMMARY cause a dead loop.

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta/recipes-support/libpcre/libpcre_8.44.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-support/libpcre/libpcre_8.44.bb b/meta/recipes-support/libpcre/libpcre_8.44.bb
index e5471e81da..102b92b4dd 100644
--- a/meta/recipes-support/libpcre/libpcre_8.44.bb
+++ b/meta/recipes-support/libpcre/libpcre_8.44.bb
@@ -40,8 +40,8 @@ EXTRA_OECONF = "--enable-utf"
 
 PACKAGES =+ "libpcrecpp libpcreposix pcregrep pcregrep-doc pcretest pcretest-doc"
 
-SUMMARY_libpcrecpp = "${SUMMARY} - C++ wrapper functions"
-SUMMARY_libpcreposix = "${SUMMARY} - C wrapper functions based on the POSIX regex API"
+SUMMARY_libpcrecpp = "Perl Compatible Regular Expressions - C++ wrapper functions"
+SUMMARY_libpcreposix = "Perl Compatible Regular Expressions - C wrapper functions based on the POSIX regex API"
 SUMMARY_pcregrep = "grep utility that uses perl 5 compatible regexes"
 SUMMARY_pcregrep-doc = "grep utility that uses perl 5 compatible regexes - docs"
 SUMMARY_pcretest = "program for testing Perl-comatible regular expressions"
-- 
2.17.1


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

end of thread, other threads:[~2020-09-02  7:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-28  6:14 [PATCH] libpcre: fix occasionally do_package_write_rpm error Changqing Li
2020-09-01 11:08 ` [OE-core] " Richard Purdie
2020-09-02  2:36   ` Changqing Li
2020-09-02  7:17     ` Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox