toolchain/gdb: fix broken non-python build
Append configure args instead of overwriting them
Fixes: 74417f8b3a
("toolchain: gdb: Add optional python support")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
bb749e49a6
commit
7f946a880a
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ HOST_CONFIGURE_ARGS = \
|
||||||
ifneq ($(CONFIG_GDB_PYTHON),)
|
ifneq ($(CONFIG_GDB_PYTHON),)
|
||||||
HOST_CONFIGURE_ARGS+= --with-python
|
HOST_CONFIGURE_ARGS+= --with-python
|
||||||
else
|
else
|
||||||
HOST_CONFIGURE_ARGS:= --without-python
|
HOST_CONFIGURE_ARGS+= --without-python
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
|
Loading…
Reference in a new issue