浏览代码

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 <[email protected]>
Felix Fietkau 4 年之前
父节点
当前提交
7f946a880a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      toolchain/gdb/Makefile

+ 1 - 1
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