From 9223a6cec8ada95df6e45dfa9a1f92be53860c96 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 10 Apr 2024 23:15:09 +0200 Subject: fix: Check for Windows_NT instead of UNIX first Signed-off-by: Amlal El Mahrouss --- Private/NewBoot/Source/makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Private/NewBoot/Source/makefile b/Private/NewBoot/Source/makefile index c37d0ccc..b6eb80b0 100644 --- a/Private/NewBoot/Source/makefile +++ b/Private/NewBoot/Source/makefile @@ -12,10 +12,10 @@ ADD_FILE=touch COPY=cp HTTP_GET=wget -ifeq ($(shell uname), Darwin) -EMU=qemu-system-x86_64 -else +ifeq ($(shell uname), Windows_NT) EMU=qemu-system-x86_64w.exe +else +EMU=qemu-system-x86_64 endif IMG=epm.img -- cgit v1.2.3