From acc7161ca5545a592d5b4145b2b5bacfc7b08f73 Mon Sep 17 00:00:00 2001 From: ToBul <108437760+ToBul@users.noreply.github.com> Date: Sun, 13 Nov 2022 03:16:45 +0000 Subject: [PATCH] [Makefile.Win32] $MSYSTEM check never fails. 'make clean' from Win command shell doesn't fully clean, condition always true. --- Makefiles/Makefile.Win32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefiles/Makefile.Win32 b/Makefiles/Makefile.Win32 index 3945411..3e86534 100644 --- a/Makefiles/Makefile.Win32 +++ b/Makefiles/Makefile.Win32 @@ -73,7 +73,7 @@ endif # Use Bash or Windows Prompt shell commands? # DELETE = rm -d -r -f -ifeq ($(strip $(MSYSTEM)),) +ifeq ($(strip $(MSYSTEM)),1) DELETE = rmdir /s /q endif