Makefile.am: swap libdb_plugins.a and -lmpdclient order
With some linkers, it is important to specify the static library first, and then libmpdclient. Fixes linker failures.
This commit is contained in:
parent
1c3e03837c
commit
695ffedef9
|
@ -447,8 +447,8 @@ libdb_plugins_a_SOURCES += \
|
|||
endif
|
||||
|
||||
DB_LIBS = \
|
||||
$(LIBMPDCLIENT_LIBS) \
|
||||
libdb_plugins.a
|
||||
libdb_plugins.a \
|
||||
$(LIBMPDCLIENT_LIBS)
|
||||
|
||||
# archive plugins
|
||||
|
||||
|
|
Loading…
Reference in New Issue