diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2020-03-11 15:25:46 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-12 22:49:28 +0000 |
commit | 95cf1a9a5daffd4641d9fae5b346bc762e012b94 (patch) | |
tree | 0bf68a1362c43d920973fa89ee38d918b88cbf2f | |
parent | 79870c4d75bcce40fb1e89fa055d49d43fb79e88 (diff) | |
download | poky-95cf1a9a5daffd4641d9fae5b346bc762e012b94.tar.gz |
boost: fix reproducibilty issues
fix cmake file references of image dir path
(From OE-Core rev: e12caa834bef6b5d0cad7e96f79374a0dbf86aea)
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index e15dce4e1d..8eb9494381 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc | |||
@@ -202,6 +202,11 @@ do_install() { | |||
202 | fi | 202 | fi |
203 | done | 203 | done |
204 | 204 | ||
205 | # Cmake files reference full paths to image | ||
206 | find ${D}${libdir}/cmake -type f | \ | ||
207 | grep 'cmake$' | \ | ||
208 | xargs -n 1 sed -e 's,${D}${libdir}/cmake,${libdir}/cmake,' -i | ||
209 | |||
205 | } | 210 | } |
206 | 211 | ||
207 | BBCLASSEXTEND = "native nativesdk" | 212 | BBCLASSEXTEND = "native nativesdk" |