Skip to content

Commit 9fe51a6

Browse files
committed
Merge branch 'master' of https://github.com/raysan5/raylib
2 parents c92de5f + 942f93d commit 9fe51a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),PLATFORM_WEB PLATFORM_WEB_R
213213
ifeq ($(PLATFORM_OS),WINDOWS)
214214
MAKE = mingw32-make
215215
else
216-
EMMAKE != type emmake
216+
EMMAKE := $(shell command -v emmake)
217217
ifneq (, $(EMMAKE))
218-
MAKE = emmake make
218+
MAKE = $(EMMAKE) make
219219
else
220220
MAKE = mingw32-make
221221
endif

examples/Makefile.Web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),PLATFORM_WEB PLATFORM_WEB_R
211211
ifeq ($(PLATFORM_OS),WINDOWS)
212212
MAKE = mingw32-make
213213
else
214-
EMMAKE != type emmake
214+
EMMAKE := $(shell command -v emmake)
215215
ifneq (, $(EMMAKE))
216-
MAKE = emmake make
216+
MAKE = $(EMMAKE) make
217217
else
218218
MAKE = mingw32-make
219219
endif

0 commit comments

Comments
 (0)