From d2b163a66d39634ab38d3ee6b78d6324c3aae9ac Mon Sep 17 00:00:00 2001 From: Marcus Comstedt Date: Sat, 16 May 2009 15:32:20 +0000 Subject: [PATCH] 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 ./ svn-id: r40630 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index e56c266d61b..dbc5d15247e 100755 --- a/configure +++ b/configure @@ -1485,7 +1485,7 @@ _mak_plugins=' 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