From: Felix Fietkau Date: Wed, 9 Jun 2021 11:16:11 +0000 (+0200) Subject: toolchain/gdb: fix broken non-python build X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7f946a880a61816e338e99b79ece6fb206fc6f9c;p=openwrt%2Fstaging%2Fansuel.git toolchain/gdb: fix broken non-python build Append configure args instead of overwriting them Fixes: 74417f8b3a80 ("toolchain: gdb: Add optional python support") Signed-off-by: Felix Fietkau --- diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index 2708eff869..e769a3be3e 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -46,7 +46,7 @@ HOST_CONFIGURE_ARGS = \ ifneq ($(CONFIG_GDB_PYTHON),) HOST_CONFIGURE_ARGS+= --with-python else - HOST_CONFIGURE_ARGS:= --without-python + HOST_CONFIGURE_ARGS+= --without-python endif define Host/Install