mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-06 16:04:40 +02:00
Make the disabling of gdbserver conditional on the value of TCMODE. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
6 lines
348 B
Plaintext
6 lines
348 B
Plaintext
# Disable build of gdbserver because it is
|
|
# provided by external-sourcery-toolchain
|
|
PACKAGES := "${@oe_filter_out('gdbserver' if '${TCMODE}'.startswith('external-sourcery') else '$', '${PACKAGES}', d)}"
|
|
DISABLE_GDBSERVER := "${@'--disable-gdbserver' if '${TCMODE}'.startswith('external-sourcery') else ''}"
|
|
EXTRA_OECONF += "${DISABLE_GDBSERVER}"
|