meta: convert nested overrides leftovers to new syntax

Those were missed in previous rounds of automated and manual conversion.

(From OE-Core rev: 22f9c7268b542baf6cd8aa0e34c8fb7aa1579e08)

Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Denys Dmytriyenko
2021-08-03 21:28:04 -04:00
committed by Richard Purdie
parent 4875b8989b
commit fdf57744b4
6 changed files with 13 additions and 13 deletions

View File

@@ -56,7 +56,7 @@ export gcc_cv_collect2_libs = 'none required'
# in the config.log files (which might not get generated until do_compile
# hence being missed by the insane do_configure check).
EXTRA_OECONF:append_linux = " --enable-__cxa_atexit"
EXTRA_OECONF:append:linux = " --enable-__cxa_atexit"
EXTRA_OECONF:append:mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64"
EXTRA_OECONF:append:mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64"

View File

@@ -180,9 +180,9 @@ SYSTEMLIBS = "${target_base_libdir}/"
SYSTEMLIBS1 = "${target_libdir}/"
EXTRA_OECONF += "--enable-poison-system-directories"
EXTRA_OECONF:remove_elf = "--with-sysroot=/not/exist"
EXTRA_OECONF:remove_eabi = "--with-sysroot=/not/exist"
EXTRA_OECONF:append_elf = " --without-headers --with-newlib"
EXTRA_OECONF:append_eabi = " --without-headers --with-newlib"
EXTRA_OECONF:remove:elf = "--with-sysroot=/not/exist"
EXTRA_OECONF:remove:eabi = "--with-sysroot=/not/exist"
EXTRA_OECONF:append:elf = " --without-headers --with-newlib"
EXTRA_OECONF:append:eabi = " --without-headers --with-newlib"
# gcc 4.7 needs -isystem
export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}"

View File

@@ -281,7 +281,7 @@ SUMMARY:libitm-staticdev = "GNU transactional memory support library - static de
require gcc-testsuite.inc
EXTRA_OEMAKE:prepend_task-check = "${PARALLEL_MAKE} "
EXTRA_OEMAKE:prepend:task-check = "${PARALLEL_MAKE} "
MAKE_CHECK_TARGETS ??= "check-gcc ${@" ".join("check-target-" + i for i in d.getVar("RUNTIMETARGET").split())}"
# prettyprinters and xmethods require gdb tooling

View File

@@ -59,7 +59,7 @@ do_install:append() {
rm -f ${D}${infodir}/bfd.info
}
RRECOMMENDS:gdb:append_linux = " glibc-thread-db "
RRECOMMENDS:gdb:append_linux-gnueabi = " glibc-thread-db "
RRECOMMENDS:gdbserver:append_linux = " glibc-thread-db "
RRECOMMENDS:gdbserver:append_linux-gnueabi = " glibc-thread-db "
RRECOMMENDS:gdb:append:linux = " glibc-thread-db "
RRECOMMENDS:gdb:append:linux-gnueabi = " glibc-thread-db "
RRECOMMENDS:gdbserver:append:linux = " glibc-thread-db "
RRECOMMENDS:gdbserver:append:linux-gnueabi = " glibc-thread-db "