From 972249b6e4e0423ba21b6ddd1a002b479d91c39a Mon Sep 17 00:00:00 2001 From: Lei Maohui Date: Fri, 16 Sep 2022 09:32:11 +0800 Subject: [PATCH] gexiv2: Fix buildpaths warning. WARNING: gexiv2-0.14.0-r0 do_package_qa: QA Issue: File /usr/src/debug/gexiv2/0.14.0-r0/gexiv2/gexiv2-enums.cpp in package lib32-gexiv2-src contains reference to TMPDIR [buildpaths] Signed-off-by: Lei Maohui Signed-off-by: Khem Raj --- meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.0.bb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.0.bb b/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.0.bb index afec302cb4..fed29da0fc 100644 --- a/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.0.bb +++ b/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.0.bb @@ -19,3 +19,10 @@ EXTRA_OEMESON = " \ PACKAGES =+ "${PN}-python3" FILES:${PN}-python3 = "${PYTHON_SITEPACKAGES_DIR}" RDEPENDS:${PN}-python3 = "${PN}" + +PACKAGE_PREPROCESS_FUNCS += "src_package_preprocess" +src_package_preprocess () { + # Trim build paths from comments in generated sources to ensure reproducibility + sed -i -e "s,${B}/../${BPN}-${PV}/${BPN}/,,g" \ + ${B}/gexiv2/gexiv2-enums.cpp +}