summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-12 11:45:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-23 23:14:17 +0100
commit4d4dd6b7686ec7d2a193d1f22261a78a02cd58b9 (patch)
tree0c0f69a9f5366ef63784d9a30400845e2dd89e61
parent73483b4fdb7605334195ae7ea8bcd47bd1d63cbf (diff)
downloadpoky-4d4dd6b7686ec7d2a193d1f22261a78a02cd58b9.tar.gz
libnewt: Use python3targetconfig to fix reproducibility issue
We're seeing pthread being linked sometimes and not others leading to non-reproducible target binaries. The reason is mixing the native python config with the target one. We should use the target one. (From OE-Core rev: 8fc9963d70247d243c8fc5597d68d88a1757f2fd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 3fe5101b335384ef83e96ccc58687fd631164075) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/newt/libnewt_0.52.21.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/newt/libnewt_0.52.21.bb b/meta/recipes-extended/newt/libnewt_0.52.21.bb
index 88b4cf4a03..3d35a17c92 100644
--- a/meta/recipes-extended/newt/libnewt_0.52.21.bb
+++ b/meta/recipes-extended/newt/libnewt_0.52.21.bb
@@ -29,7 +29,7 @@ SRC_URI[sha256sum] = "265eb46b55d7eaeb887fca7a1d51fe115658882dfe148164b6c49fccac
29 29
30S = "${WORKDIR}/newt-${PV}" 30S = "${WORKDIR}/newt-${PV}"
31 31
32inherit autotools-brokensep python3native python3-dir 32inherit autotools-brokensep python3native python3-dir python3targetconfig
33 33
34EXTRA_OECONF = "--without-tcl --with-python" 34EXTRA_OECONF = "--without-tcl --with-python"
35 35