[Scummvm-git-logs] scummvm master -> c2010e2560985a2c666355ce8baf543453fa51d7
sev-
sev at scummvm.org
Sun Oct 4 20:08:21 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
c2010e2560 BUILD: Fix linking on some gcc versions
Commit: c2010e2560985a2c666355ce8baf543453fa51d7
https://github.com/scummvm/scummvm/commit/c2010e2560985a2c666355ce8baf543453fa51d7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-04T22:07:59+02:00
Commit Message:
BUILD: Fix linking on some gcc versions
Changed paths:
Makefile.common
diff --git a/Makefile.common b/Makefile.common
index 898df489b9..804f8c11ff 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -118,7 +118,7 @@ endif
endif
# The build rule for the ScummVM executable
-$(EXECUTABLE): $(OBJS) $(DETECT_OBJS)
+$(EXECUTABLE): $(DETECT_OBJS) $(OBJS)
$(QUIET_LINK)$(LD) $(LDFLAGS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) $(LIBS) -o $@
ifdef SPLIT_DWARF
More information about the Scummvm-git-logs
mailing list