diff mbox series

[meta-filesystems] e2tools: fix buildpath in ptest

Message ID 20251225080742.2146630-1-yi.zhao@windriver.com
State Under Review
Headers show
Series [meta-filesystems] e2tools: fix buildpath in ptest | expand

Commit Message

Yi Zhao Dec. 25, 2025, 8:07 a.m. UTC
Remove ${RECIPE_SYSROOT_NATIVE} from config.status to fix QA warning:

ERROR: lib32-e2tools-0.1.2-r0 do_package_qa: QA Issue: File
/usr/lib/e2tools/ptest/build/config.status in package
lib32-e2tools-ptest contains reference to TMPDIR [buildpaths]

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb b/meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb
index c9631f6219..06f0c28d6d 100644
--- a/meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb
+++ b/meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb
@@ -66,6 +66,7 @@  do_install_ptest() {
         -e 's@${S}@${PTEST_PATH}@g' \
         -e 's@${B}@${PTEST_PATH}/build@g' \
         -e 's@${HOSTTOOLS_DIR}@@g' \
+        -e 's@${RECIPE_SYSROOT_NATIVE}@@g' \
         -e 's@${RECIPE_SYSROOT}@@g' \
         -i ${D}${PTEST_PATH}/build/config.status
 }