mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
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>
This commit is contained in:
@@ -5,10 +5,10 @@ SECTION = "devel"
|
||||
DEPENDS = "expat zlib ncurses virtual/libiconv ${LTTNGUST} bison-native"
|
||||
|
||||
LTTNGUST = "lttng-ust"
|
||||
LTTNGUST_arc = ""
|
||||
LTTNGUST_aarch64 = ""
|
||||
LTTNGUST_mipsarch = ""
|
||||
LTTNGUST_sh4 = ""
|
||||
LTTNGUST:arc = ""
|
||||
LTTNGUST:aarch64 = ""
|
||||
LTTNGUST:mipsarch = ""
|
||||
LTTNGUST:sh4 = ""
|
||||
|
||||
inherit autotools texinfo
|
||||
|
||||
@@ -52,14 +52,14 @@ do_configure () {
|
||||
|
||||
# we don't want gdb to provide bfd/iberty/opcodes, which instead will override the
|
||||
# right bits installed by binutils. Same for bfd.info -- also from binutils.
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
rm -rf ${D}${libdir}
|
||||
rm -rf ${D}${includedir}
|
||||
rm -rf ${D}${datadir}/locale
|
||||
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 "
|
||||
|
||||
@@ -21,7 +21,7 @@ PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, nativesdk-
|
||||
|
||||
SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
cat > ${WORKDIR}/python << EOF
|
||||
#! /bin/sh
|
||||
case "\$2" in
|
||||
@@ -37,7 +37,7 @@ EOF
|
||||
|
||||
# we don't want gdb to provide bfd/iberty/opcodes, which instead will override the
|
||||
# right bits installed by binutils.
|
||||
do_install_append() {
|
||||
do_install:append() {
|
||||
rm -rf ${D}${exec_prefix}/lib
|
||||
cross_canadian_bindirlinks
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ PACKAGECONFIG[python] = "--with-python=${PYTHON},--without-python,python3-native
|
||||
PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline-native"
|
||||
PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils-native"
|
||||
|
||||
do_compile_prepend() {
|
||||
do_compile:prepend() {
|
||||
export STAGING_LIBDIR="${STAGING_LIBDIR_NATIVE}"
|
||||
export STAGING_INCDIR="${STAGING_INCDIR_NATIVE}"
|
||||
}
|
||||
|
||||
@@ -3,9 +3,9 @@ require gdb-common.inc
|
||||
inherit gettext
|
||||
|
||||
#LDFLAGS_append = " -s"
|
||||
#export CFLAGS_append=" -L${STAGING_LIBDIR}"
|
||||
#export CFLAGS:append=" -L${STAGING_LIBDIR}"
|
||||
|
||||
# cross-canadian must not see this
|
||||
PACKAGES =+ "gdbserver"
|
||||
FILES_gdbserver = "${bindir}/gdbserver"
|
||||
FILES:gdbserver = "${bindir}/gdbserver"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ require gdb-${PV}.inc
|
||||
|
||||
inherit python3-dir
|
||||
|
||||
EXTRA_OEMAKE_append_libc-musl = "\
|
||||
EXTRA_OEMAKE:append:libc-musl = "\
|
||||
gt_cv_func_gnugettext1_libc=yes \
|
||||
gt_cv_func_gnugettext2_libc=yes \
|
||||
gl_cv_func_working_strerror=yes \
|
||||
@@ -11,7 +11,7 @@ EXTRA_OEMAKE_append_libc-musl = "\
|
||||
gl_cv_func_gettimeofday_clobber=no \
|
||||
"
|
||||
|
||||
do_configure_prepend() {
|
||||
do_configure:prepend() {
|
||||
if [ "${@bb.utils.filter('PACKAGECONFIG', 'python', d)}" ]; then
|
||||
cat > ${WORKDIR}/python << EOF
|
||||
#!/bin/sh
|
||||
|
||||
Reference in New Issue
Block a user