Replace shell with assignment operator

This commit is contained in:
asdqwe 2024-10-25 17:41:02 -03:00
parent 04968a055b
commit 6d843feb3b

View File

@ -197,7 +197,8 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
MAKE = mingw32-make MAKE = mingw32-make
endif endif
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB) ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
ifneq (, $(shell type emmake)) EMMAKE != type emmake
ifneq (, $(EMMAKE))
MAKE = emmake make MAKE = emmake make
else else
MAKE = mingw32-make MAKE = mingw32-make