From acd0deb8a13532db42f5c4c97afcb3bc08b5e03a Mon Sep 17 00:00:00 2001 From: Victor Sun Date: Tue, 12 Nov 2019 13:54:41 +0800 Subject: [PATCH] Makefile: board specific acpi info header clean up The board specific $(BOARD)_acpi_info.h is generated by acrn-config tool, we should clean it up before build hypervisor, otherwise the file could be referenced by next build process if no config XMLs is specified. Tracked-On: #3779 Signed-off-by: Victor Sun --- hypervisor/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/hypervisor/Makefile b/hypervisor/Makefile index 46306fb3f..9b92991dc 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -446,6 +446,7 @@ $(HV_OBJDIR)/$(HV_FILE).out: $(MODULES) .PHONY: clean clean: rm -f $(VERSION) + rm -f $(SOURCE_ACPI_INFO_HEADER) rm -rf $(HV_OBJDIR) .PHONY: distclean