Skip to content

Commit ba3192a

Browse files
miguelinuxNanlinXie
authored andcommitted
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: fc2b6fb ("Makefile: keep using 'PLATFORM' variable for existing documentation") Signed-off-by: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com>
1 parent 6ef48fa commit ba3192a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ clean:
3434
install: hypervisor-install devicemodel-install tools-install
3535

3636
hypervisor-install:
37-
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE) install
37+
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLATFORM) RELEASE=$(RELEASE) install
3838

3939
devicemodel-install:
4040
make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT) install

0 commit comments

Comments
 (0)