diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-support/gmp | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gmp')
-rw-r--r-- | meta/recipes-support/gmp/gmp.inc | 4 | ||||
-rw-r--r-- | meta/recipes-support/gmp/gmp_6.2.1.bb | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-support/gmp/gmp.inc index 948b89288e..1872226616 100644 --- a/meta/recipes-support/gmp/gmp.inc +++ b/meta/recipes-support/gmp/gmp.inc | |||
@@ -8,5 +8,5 @@ inherit autotools texinfo multilib_header | |||
8 | PACKAGECONFIG ??= "" | 8 | PACKAGECONFIG ??= "" |
9 | PACKAGECONFIG[readline] = "--with-readline=yes,--with-readline=no,readline" | 9 | PACKAGECONFIG[readline] = "--with-readline=yes,--with-readline=no,readline" |
10 | 10 | ||
11 | ARM_INSTRUCTION_SET_armv4 = "arm" | 11 | ARM_INSTRUCTION_SET:armv4 = "arm" |
12 | ARM_INSTRUCTION_SET_armv5 = "arm" | 12 | ARM_INSTRUCTION_SET:armv5 = "arm" |
diff --git a/meta/recipes-support/gmp/gmp_6.2.1.bb b/meta/recipes-support/gmp/gmp_6.2.1.bb index 3c50f928ab..d5996abd00 100644 --- a/meta/recipes-support/gmp/gmp_6.2.1.bb +++ b/meta/recipes-support/gmp/gmp_6.2.1.bb | |||
@@ -19,16 +19,16 @@ SRC_URI[sha256sum] = "eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a3 | |||
19 | acpaths = "" | 19 | acpaths = "" |
20 | 20 | ||
21 | EXTRA_OECONF += " --enable-cxx=detect" | 21 | EXTRA_OECONF += " --enable-cxx=detect" |
22 | EXTRA_OECONF_mipsarchr6_append = " --disable-assembly" | 22 | EXTRA_OECONF:mipsarchr6:append = " --disable-assembly" |
23 | 23 | ||
24 | PACKAGES =+ "libgmpxx" | 24 | PACKAGES =+ "libgmpxx" |
25 | FILES_libgmpxx = "${libdir}/libgmpxx${SOLIBS}" | 25 | FILES:libgmpxx = "${libdir}/libgmpxx${SOLIBS}" |
26 | 26 | ||
27 | do_install_append() { | 27 | do_install:append() { |
28 | oe_multilib_header gmp.h | 28 | oe_multilib_header gmp.h |
29 | } | 29 | } |
30 | 30 | ||
31 | do_install_prepend_class-target() { | 31 | do_install:prepend:class-target() { |
32 | sed -i \ | 32 | sed -i \ |
33 | -e "s|--sysroot=${STAGING_DIR_HOST}||g" \ | 33 | -e "s|--sysroot=${STAGING_DIR_HOST}||g" \ |
34 | -e "s|${DEBUG_PREFIX_MAP}||g" \ | 34 | -e "s|${DEBUG_PREFIX_MAP}||g" \ |