[Scummvm-cvs-logs] SF.net SVN: scummvm:[40630] scummvm/trunk/configure

marcus_c at users.sourceforge.net marcus_c at users.sourceforge.net
Sat May 16 17:32:20 CEST 2009


Revision: 40630
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40630&view=rev
Author:   marcus_c
Date:     2009-05-16 15:32:20 +0000 (Sat, 16 May 2009)

Log Message:
-----------
Fixed problem with building the Dreamcast port in the srcdir:

When srcdir is ".", GNU make strips ./ from the paths before putting
them into $+.  This makes filtering out using the original paths not
work, so make sure the paths are absolute and not starting with ./

Modified Paths:
--------------
    scummvm/trunk/configure

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2009-05-16 14:24:12 UTC (rev 40629)
+++ scummvm/trunk/configure	2009-05-16 15:32:20 UTC (rev 40630)
@@ -1485,7 +1485,7 @@
 DYNAMIC_MODULES		:= 1
 PLUGIN_PREFIX		:=
 PLUGIN_SUFFIX		:= .plg
-PLUGIN_EXTRA_DEPS	= $(srcdir)/backends/platform/dc/plugin.x $(srcdir)/backends/platform/dc/plugin.syms $(EXECUTABLE)
+PLUGIN_EXTRA_DEPS	= $(abspath $(srcdir)/backends/platform/dc/plugin.x $(srcdir)/backends/platform/dc/plugin.syms) $(EXECUTABLE)
 CXXFLAGS			+= -DDYNAMIC_MODULES
 PLUGIN_LDFLAGS		= -ml -m4-single-only -nostartfiles -Wl,-q,-T$(srcdir)/backends/platform/dc/plugin.x,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/platform/dc/plugin.syms -L$(ronindir)/lib
 PRE_OBJS_FLAGS		:= -Wl,--whole-archive


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