From f69f31733ea629395c071d0eef6ed3d118ee7f1b Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Sun, 22 Jun 2025 19:43:23 +0200 Subject: [PATCH] gexiv2: fix buildpath error adapt 'sed' command to UNPACKDIR changes Signed-off-by: Markus Volk Signed-off-by: Khem Raj --- meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.5.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.5.bb b/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.5.bb index c9307967de..fadae34608 100644 --- a/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.5.bb +++ b/meta-gnome/recipes-gnome/gexiv2/gexiv2_0.14.5.bb @@ -20,8 +20,8 @@ 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" \ + # Trim build paths from code in generated sources to ensure reproducibility + sed -i -e "s,${B}/../sources/${BP},${TARGET_DBGSRC_DIR},g" \ ${B}/gexiv2/gexiv2-enums.cpp }