From a522a8eeaf302303f59baa6cb5d488cfa32ec79d Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Wed, 9 Nov 2022 19:37:03 +0100 Subject: [PATCH] tools/Win.mk fix shell conditional --- tools/Win.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Win.mk b/tools/Win.mk index 1013903626..fde732a435 100644 --- a/tools/Win.mk +++ b/tools/Win.mk @@ -123,7 +123,7 @@ MKEXPORT_ARGS += -u endif ifneq ($(APPDIR),) -ifneq ($(shell [ -e $(APPDIR)/Makefile ] && echo yes),) +ifneq ($(shell if exist "$(APPDIR)/Makefile" echo yes),) MKEXPORT_ARGS += -a "$(APPDIR)" MKEXPORT_ARGS += -m "$(MAKE)" endif