summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKonrad Weihmann <kweihmann@outlook.com>2022-02-15 13:41:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-16 09:46:29 +0000
commit371a46cb7821130321036de09e0f0dd7b659316a (patch)
tree9b7c9862845837fb160e71b6f51d95242fed0e5d /meta
parent89004bc2480808576582001460e37d98143bf9a3 (diff)
downloadpoky-371a46cb7821130321036de09e0f0dd7b659316a.tar.gz
gmp: fix EXTRA_OECONF for mipsarchr6
previously used mipsarchr6:append created an empty set for EXTRA_OECONF and then appended --disable-assembly while it should be just added to the existing var value. Without this patch gmp will be configured without --enable-cxx=detect for mipsarchr6 targets (From OE-Core rev: c17e1023eff86e71734edeb592a26f3a9160d72e) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-support/gmp/gmp_6.2.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/gmp/gmp_6.2.1.bb b/meta/recipes-support/gmp/gmp_6.2.1.bb
index e61582afdf..33f439eca9 100644
--- a/meta/recipes-support/gmp/gmp_6.2.1.bb
+++ b/meta/recipes-support/gmp/gmp_6.2.1.bb
@@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a3
20acpaths = "" 20acpaths = ""
21 21
22EXTRA_OECONF += " --enable-cxx=detect" 22EXTRA_OECONF += " --enable-cxx=detect"
23EXTRA_OECONF:mipsarchr6:append = " --disable-assembly" 23EXTRA_OECONF:append:mipsarchr6 = " --disable-assembly"
24 24
25PACKAGES =+ "libgmpxx" 25PACKAGES =+ "libgmpxx"
26FILES:libgmpxx = "${libdir}/libgmpxx${SOLIBS}" 26FILES:libgmpxx = "${libdir}/libgmpxx${SOLIBS}"