[Makefile.Win32] $MSYSTEM check never fails.

'make clean' from Win command shell doesn't fully clean, condition always true.
This commit is contained in:
ToBul 2022-11-13 03:16:45 +00:00 committed by trzy
parent 5f30614c4c
commit acc7161ca5

View file

@ -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