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
This commit is contained in:
parent
f010eef04e
commit
d2b163a66d
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue