summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHieu Van Nguyen <hieu2.nguyen@lge.com>2025-01-17 12:39:58 +0900
committerArmin Kuster <akuster808@gmail.com>2025-01-20 19:46:16 -0500
commitdda0d53326017d6758ec6bdfdaf2f484c089d13f (patch)
tree9c11e9d8822138b489b989c437ecd7301d440c2f
parentcfdae225fa0f15fb765ff56091ba75a894591a25 (diff)
downloadmeta-openembedded-dda0d53326017d6758ec6bdfdaf2f484c089d13f.tar.gz
gphoto2: Fix contains reference to TMPDIR [buildpaths] warning
Remove ${RECIPE_SYSROOT} path from ${B}/config.h to fix the QA warning: WARNING: gphoto2-2.5.28-r0 do_package_qa: QA Issue: File /usr/bin/gphoto2 in package gphoto2 contains reference to TMPDIR [buildpaths] Signed-off-by: Hieu Van Nguyen <hieu2.nguyen@lge.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb
index 513845194d..1dc2a1fc34 100644
--- a/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb
+++ b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb
@@ -19,3 +19,6 @@ EXTRA_OECONF += "--with-jpeg-prefix=${STAGING_INCDIR} \
19 --without-cdk \ 19 --without-cdk \
20" 20"
21 21
22do_configure:append() {
23 sed -i -e 's#${RECIPE_SYSROOT}##g' ${B}/config.h
24}