diff mbox series

[meta-python] python3-frozenlist: disable the support of ccache

Message ID 20250828064523.114335-1-changqing.li@windriver.com
State New
Headers show
Series [meta-python] python3-frozenlist: disable the support of ccache | expand

Commit Message

Changqing Li Aug. 28, 2025, 6:45 a.m. UTC
From: Changqing Li <changqing.li@windriver.com>

With ccache enable, python3-fronzenlist do_package_qa failed:
ERROR: python3-frozenlist-1.7.0-r0 do_package_qa: QA Issue: File /usr/lib64/python3.13/site-packages/frozenlist/.debug/_frozenlist.cpython-313-x86_64-linux-gnu.so in package python3-frozenlist-dbg contains reference to TMPDIR [buildpaths]
ERROR: python3-frozenlist-1.7.0-r0 do_package_qa: QA Issue: File /usr/lib64/python3.13/site-packages/frozenlist/_frozenlist.cpython-313-x86_64-linux-gnu.so in package python3-frozenlist contains reference to TMPDIR [buildpaths]

Although we have set -ffile-prefix-map, the buildpaths is not replaced.

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta-python/recipes-devtools/python/python3-frozenlist_1.7.0.bb | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-frozenlist_1.7.0.bb b/meta-python/recipes-devtools/python/python3-frozenlist_1.7.0.bb
index 7d813a026c..363dab969e 100644
--- a/meta-python/recipes-devtools/python/python3-frozenlist_1.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-frozenlist_1.7.0.bb
@@ -11,4 +11,6 @@  DEPENDS += " \
     python3-expandvars-native \
 "
 
+CCACHE_DISABLE = "1"
+
 BBCLASSEXTEND = "native nativesdk"