tools/Win.mk

fix shell conditional
This commit is contained in:
simbit18 2022-11-09 19:37:03 +01:00 committed by Xiang Xiao
parent 36abcda0d2
commit a522a8eeaf
1 changed files with 1 additions and 1 deletions

View File

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