Skip to content

Commit f822358

Browse files
committed
fu fix2
1 parent ef17502 commit f822358

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

backends/platform/libretro/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,11 @@ CFLAGS += $(DEFINES) $(INCLUDES)
604604
# Include the build instructions for all modules
605605
include $(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
608613
DEPDIRS := $(addsuffix $(DEPDIR),$(MODULE_PATHS))
609614

backends/platform/libretro/Makefile.common

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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)
328328
endif
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
######################################################################

0 commit comments

Comments
 (0)