[Scummvm-cvs-logs] SF.net SVN: scummvm:[46705] tools/branches/gsoc2009-gui/Makefile.common

sev at users.sourceforge.net sev at users.sourceforge.net
Tue Dec 29 10:01:43 CET 2009


Revision: 46705
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46705&view=rev
Author:   sev
Date:     2009-12-29 09:01:43 +0000 (Tue, 29 Dec 2009)

Log Message:
-----------
Fix linking on MinGW

Modified Paths:
--------------
    tools/branches/gsoc2009-gui/Makefile.common

Modified: tools/branches/gsoc2009-gui/Makefile.common
===================================================================
--- tools/branches/gsoc2009-gui/Makefile.common	2009-12-29 08:56:41 UTC (rev 46704)
+++ tools/branches/gsoc2009-gui/Makefile.common	2009-12-29 09:01:43 UTC (rev 46705)
@@ -229,7 +229,7 @@
 # This also automatically hooks up a "clean" rule.
 define PROGRAM_template
 $(1)$(EXEEXT): $$($(1)_OBJS)
-	$(QUIET_LINK)$(LD) $(LDFLAGS) $$($(1)_LIBS) -o $(1)$(EXEEXT) $$($(1)_OBJS)
+	$(QUIET_LINK)$(LD) -o $(1)$(EXEEXT) $$($(1)_OBJS) $(LDFLAGS) $$($(1)_LIBS)
 #all: $(1)$(EXEEXT)
 clean-$(1):
 	$(RM) $(1)$(EXEEXT)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list