qemu: tighten up CONFIGURE_ARGS spec
This is more for readability, no functional change Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
parent
41c3a2e0a5
commit
9400257639
1 changed files with 2 additions and 6 deletions
|
@ -256,12 +256,8 @@ CONFIGURE_ARGS += \
|
|||
--disable-strip \
|
||||
--disable-werror \
|
||||
|
||||
QEMU_CONFIGURE_TARGET_LIST := $(foreach target,$(QEMU_TARGET_LIST),$(if $(CONFIG_PACKAGE_qemu-$(target)),$(target)))
|
||||
CONFIGURE_ARGS += --target-list='$(QEMU_CONFIGURE_TARGET_LIST)'
|
||||
|
||||
ifneq ($(CONFIG_PACKAGE_qemu-ga),)
|
||||
CONFIGURE_ARGS += --enable-guest-agent
|
||||
endif
|
||||
CONFIGURE_ARGS += --target-list='$(foreach target,$(QEMU_TARGET_LIST),$(if $(CONFIG_PACKAGE_qemu-$(target)),$(target)))'
|
||||
CONFIGURE_ARGS += $(if $(CONFIG_PACKAGE_qemu-ga),--enable-guest-agent)
|
||||
|
||||
TARGET_LDFLAGS += -Wl,--as-needed
|
||||
MAKE_VARS += V=s
|
||||
|
|
Loading…
Reference in a new issue