Makefile: drop the dependency on hvdefconfig

In the top-level Makefile, the target "hypervisor" depends on "hvdefconfig"
because, at the time the latter is introduced, building without specifying
BOARD or SCENARIO is supported by using a pair of default board and
scenario XMLs.

This is no longer the case today, as BOARD and SCENARIO are now mandatory
command line options. As a result, that dependency is no longer necessary,
and this patch just removes that.

Tracked-On: #8259
Signed-off-by: Junjie Mao <junjie.mao@intel.com>
This commit is contained in:
Junjie Mao 2022-10-14 21:10:37 +08:00 committed by acrnsi-robot
parent cdf7796a62
commit 819567e519

View File

@ -113,7 +113,7 @@ configurator:
echo -e "'yarn' or 'cargo' utility is not available. Unable to create Debian package for configurator."; \
fi
hypervisor: hvdefconfig
hypervisor:
$(MAKE) $(HV_MAKEOPTS)
@echo -e "ACRN Configuration Summary:" > $(HV_CFG_LOG)
@$(MAKE) showconfig $(HV_MAKEOPTS) -s >> $(HV_CFG_LOG)