[Scummvm-git-logs] scummvm master -> a8f12a9fc41061b4cea88fed01a3d782c5080d7d
AndywinXp
noreply at scummvm.org
Sun Jun 7 10:08:09 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
a8f12a9fc4 FREESCAPE: Fix freescape-less builds on platforms using create_project
Commit: a8f12a9fc41061b4cea88fed01a3d782c5080d7d
https://github.com/scummvm/scummvm/commit/a8f12a9fc41061b4cea88fed01a3d782c5080d7d
Author: AndywinXp (andywinxp at gmail.com)
Date: 2026-06-07T12:08:01+02:00
Commit Message:
FREESCAPE: Fix freescape-less builds on platforms using create_project
Changed paths:
engines/freescape/module.mk
diff --git a/engines/freescape/module.mk b/engines/freescape/module.mk
index 57fcd93b830..cb5881321fd 100644
--- a/engines/freescape/module.mk
+++ b/engines/freescape/module.mk
@@ -106,5 +106,11 @@ endif
include $(srcdir)/rules.mk
# Detection objects
-DETECT_OBJS += $(MODULE)/detection.o \
- $(MODULE)/zx_tape.o
+DETECT_OBJS += $(MODULE)/detection.o
+
+# Skip building the following objects if a static
+# module is enabled, because it already has the contents.
+ifneq ($(ENABLE_FREESCAPE), STATIC_PLUGIN)
+# External dependencies for detection.
+DETECT_OBJS += $(MODULE)/zx_tape.o
+endif
More information about the Scummvm-git-logs
mailing list