summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLei Maohui <leimaohui@fujitsu.com>2022-09-15 13:07:52 +0800
committerKhem Raj <raj.khem@gmail.com>2022-09-14 23:51:48 -0700
commit8f05d9c2dbc4da5e458eec354b5b2d9749bbbfc8 (patch)
treef2611fb49abcfb781b42dd3e63848521d46083fe
parent98998755aac2a8294d7658f93f70f87f50509714 (diff)
downloadmeta-openembedded-8f05d9c2dbc4da5e458eec354b5b2d9749bbbfc8.tar.gz
exiv2: Fix buildpaths warning.
Remove the build path from file exiv2Config.cmake. Signed-off-by: Lei Maohui <leimaohui@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/exiv2/exiv2_0.27.3.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/exiv2/exiv2_0.27.3.bb b/meta-oe/recipes-support/exiv2/exiv2_0.27.3.bb
index 31afe78e45..1380638ba7 100644
--- a/meta-oe/recipes-support/exiv2/exiv2_0.27.3.bb
+++ b/meta-oe/recipes-support/exiv2/exiv2_0.27.3.bb
@@ -21,3 +21,10 @@ SRC_URI += "file://0001-Use-compiler-fcf-protection-only-if-compiler-arch-su.pat
21S = "${WORKDIR}/${BPN}-${PV}-Source" 21S = "${WORKDIR}/${BPN}-${PV}-Source"
22 22
23inherit cmake gettext 23inherit cmake gettext
24
25do_install:append:class-target() {
26 # reproducibility: remove build host path
27 sed -i ${D}${libdir}/cmake/exiv2/exiv2Config.cmake \
28 -e 's:${STAGING_DIR_HOST}::g'
29}
30