From ba3192ab774b06bdacd9b3957daed46232ce7f92 Mon Sep 17 00:00:00 2001 From: Miguel Bernal Marin Date: Fri, 18 May 2018 16:35:34 -0500 Subject: [PATCH] Makefile: fix PLATFORM variable at install target The variable PLAT was renamed to PLATFORM, but was not updated in the install target giving a failure when installing ACRN hypervisor. Fixes: fc2b6fbe86e8 ("Makefile: keep using 'PLATFORM' variable for existing documentation") Signed-off-by: Miguel Bernal Marin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 938c01cd1..c483aa56c 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ clean: install: hypervisor-install devicemodel-install tools-install hypervisor-install: - make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE) install + make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLATFORM) RELEASE=$(RELEASE) install devicemodel-install: make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT) install