File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
backends/platform/libretro Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -604,6 +604,11 @@ CFLAGS += $(DEFINES) $(INCLUDES)
604604# Include the build instructions for all modules
605605include $(addprefix $(SCUMMVM_PATH ) /, $(addsuffix /module.mk,$(MODULES ) ) )
606606
607+ # Adjust populated MODULE_OBJS
608+ ifeq ($(platform ) , emscripten)
609+ MODULE_OBJ := $(filter-out % fs/emscripten% ,$(MODULE_OBJ ) )
610+ endif
611+
607612# Depdir information
608613DEPDIRS := $(addsuffix $(DEPDIR ) ,$(MODULE_PATHS ) )
609614
Original file line number Diff line number Diff line change @@ -327,11 +327,6 @@ ifeq ($(STATIC_LINKING),1)
327327 $(shell sed -i.bak -e "s/^ //g" $(ROOT_PATH)/script.mri;rm -f $(ROOT_PATH)/script.mri.bak)
328328endif
329329
330- # Adjust populated MODULE_OBJS
331- ifeq ($(platform), emscripten)
332- MODULE_OBJ := $(filter-out %fs/emscripten%,$(MODULE_OBJ))
333- endif
334-
335330######################################################################
336331# Rules
337332######################################################################
You can’t perform that action at this time.
0 commit comments