diff options
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 55186f3d66..7212d3ec79 100644 --- a/Makefile.common +++ b/Makefile.common @@ -109,7 +109,7 @@ base/main.o: $(filter-out base/libbase.a,$(OBJS)) # The build rule for the ScummVM executable $(EXECUTABLE): $(OBJS) - $(CXX) $(LDFLAGS) $(LIBS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) -o $@ + $(CXX) $(LDFLAGS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) $(LIBS) -o $@ distclean: clean $(RM_REC) $(DEPDIRS) |