diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-04-10 23:15:09 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-04-10 23:15:09 +0200 |
| commit | 9223a6cec8ada95df6e45dfa9a1f92be53860c96 (patch) | |
| tree | 92e17752968018786cd3c828d4a2280372c12557 | |
| parent | 24dd02c3072c4cb8257410fd09f2cabfd68c75a5 (diff) | |
fix: Check for Windows_NT instead of UNIX first
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | Private/NewBoot/Source/makefile | 6 |
1 files 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 |
