summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2021-08-03 21:28:04 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 20:45:41 +0100
commitfdf57744b49501301163e9ac87045ad504e2c4f1 (patch)
tree1799748b0a0e8e96d908acf86a7e08192c6c8bea
parent4875b8989ba89ad14b7d4a27aae9f73e708f2fa6 (diff)
downloadpoky-fdf57744b49501301163e9ac87045ad504e2c4f1.tar.gz
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>
-rw-r--r--meta/classes/manpages.bbclass4
-rw-r--r--meta/recipes-devtools/gcc/gcc-configure-common.inc2
-rw-r--r--meta/recipes-devtools/gcc/gcc-cross-canadian.inc8
-rw-r--r--meta/recipes-devtools/gcc/gcc-runtime.inc2
-rw-r--r--meta/recipes-devtools/gdb/gdb-common.inc8
-rw-r--r--meta/recipes-kernel/perf/perf.bb2
6 files changed, 13 insertions, 13 deletions
diff --git a/meta/classes/manpages.bbclass b/meta/classes/manpages.bbclass
index 3a96659460..64b7d8c422 100644
--- a/meta/classes/manpages.bbclass
+++ b/meta/classes/manpages.bbclass
@@ -12,7 +12,7 @@ MAN_PKG ?= "${PN}-doc"
12# only add man-db to RDEPENDS when manual files are built and installed 12# only add man-db to RDEPENDS when manual files are built and installed
13RDEPENDS:${MAN_PKG} += "${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'man-db', '', d)}" 13RDEPENDS:${MAN_PKG} += "${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'man-db', '', d)}"
14 14
15pkg_postinst:append_${MAN_PKG} () { 15pkg_postinst:append:${MAN_PKG} () {
16 # only update manual page index caches when manual files are built and installed 16 # only update manual page index caches when manual files are built and installed
17 if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then 17 if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then
18 if test -n "$D"; then 18 if test -n "$D"; then
@@ -36,7 +36,7 @@ pkg_postinst:append_${MAN_PKG} () {
36 fi 36 fi
37} 37}
38 38
39pkg_postrm:append_${MAN_PKG} () { 39pkg_postrm:append:${MAN_PKG} () {
40 # only update manual page index caches when manual files are built and installed 40 # only update manual page index caches when manual files are built and installed
41 if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then 41 if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then
42 mandb -q 42 mandb -q
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index e9bc8e466c..e4cdb73f0a 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -56,7 +56,7 @@ export gcc_cv_collect2_libs = 'none required'
56# in the config.log files (which might not get generated until do_compile 56# in the config.log files (which might not get generated until do_compile
57# hence being missed by the insane do_configure check). 57# hence being missed by the insane do_configure check).
58 58
59EXTRA_OECONF:append_linux = " --enable-__cxa_atexit" 59EXTRA_OECONF:append:linux = " --enable-__cxa_atexit"
60 60
61EXTRA_OECONF:append:mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" 61EXTRA_OECONF:append:mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64"
62EXTRA_OECONF:append:mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" 62EXTRA_OECONF:append:mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64"
diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc
index 92fb1f38ba..495dd9070b 100644
--- a/meta/recipes-devtools/gcc/gcc-cross-canadian.inc
+++ b/meta/recipes-devtools/gcc/gcc-cross-canadian.inc
@@ -180,9 +180,9 @@ SYSTEMLIBS = "${target_base_libdir}/"
180SYSTEMLIBS1 = "${target_libdir}/" 180SYSTEMLIBS1 = "${target_libdir}/"
181 181
182EXTRA_OECONF += "--enable-poison-system-directories" 182EXTRA_OECONF += "--enable-poison-system-directories"
183EXTRA_OECONF:remove_elf = "--with-sysroot=/not/exist" 183EXTRA_OECONF:remove:elf = "--with-sysroot=/not/exist"
184EXTRA_OECONF:remove_eabi = "--with-sysroot=/not/exist" 184EXTRA_OECONF:remove:eabi = "--with-sysroot=/not/exist"
185EXTRA_OECONF:append_elf = " --without-headers --with-newlib" 185EXTRA_OECONF:append:elf = " --without-headers --with-newlib"
186EXTRA_OECONF:append_eabi = " --without-headers --with-newlib" 186EXTRA_OECONF:append:eabi = " --without-headers --with-newlib"
187# gcc 4.7 needs -isystem 187# gcc 4.7 needs -isystem
188export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}" 188export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}"
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
index 9e39d49d14..4839a6687a 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
@@ -281,7 +281,7 @@ SUMMARY:libitm-staticdev = "GNU transactional memory support library - static de
281 281
282require gcc-testsuite.inc 282require gcc-testsuite.inc
283 283
284EXTRA_OEMAKE:prepend_task-check = "${PARALLEL_MAKE} " 284EXTRA_OEMAKE:prepend:task-check = "${PARALLEL_MAKE} "
285 285
286MAKE_CHECK_TARGETS ??= "check-gcc ${@" ".join("check-target-" + i for i in d.getVar("RUNTIMETARGET").split())}" 286MAKE_CHECK_TARGETS ??= "check-gcc ${@" ".join("check-target-" + i for i in d.getVar("RUNTIMETARGET").split())}"
287# prettyprinters and xmethods require gdb tooling 287# prettyprinters and xmethods require gdb tooling
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc
index 01cca123f8..0fe7b4e5b0 100644
--- a/meta/recipes-devtools/gdb/gdb-common.inc
+++ b/meta/recipes-devtools/gdb/gdb-common.inc
@@ -59,7 +59,7 @@ do_install:append() {
59 rm -f ${D}${infodir}/bfd.info 59 rm -f ${D}${infodir}/bfd.info
60} 60}
61 61
62RRECOMMENDS:gdb:append_linux = " glibc-thread-db " 62RRECOMMENDS:gdb:append:linux = " glibc-thread-db "
63RRECOMMENDS:gdb:append_linux-gnueabi = " glibc-thread-db " 63RRECOMMENDS:gdb:append:linux-gnueabi = " glibc-thread-db "
64RRECOMMENDS:gdbserver:append_linux = " glibc-thread-db " 64RRECOMMENDS:gdbserver:append:linux = " glibc-thread-db "
65RRECOMMENDS:gdbserver:append_linux-gnueabi = " glibc-thread-db " 65RRECOMMENDS:gdbserver:append:linux-gnueabi = " glibc-thread-db "
diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb
index 8ebd7d7cb5..f473272096 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -110,7 +110,7 @@ EXTRA_OEMAKE += "\
110# that it has to be done this way rather than by passing -j1, since 110# that it has to be done this way rather than by passing -j1, since
111# perf's build system by default ignores any -j argument, but does 111# perf's build system by default ignores any -j argument, but does
112# honour a JOBS variable. 112# honour a JOBS variable.
113EXTRA_OEMAKE:append_task-configure = " JOBS=1" 113EXTRA_OEMAKE:append:task-configure = " JOBS=1"
114 114
115PERF_SRC ?= "Makefile \ 115PERF_SRC ?= "Makefile \
116 tools/arch \ 116 tools/arch \