diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-19 23:38:10 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-19 23:38:24 +0100 |
commit | e8975942eca329727181f4b16077b5cf375fd8f8 (patch) | |
tree | f685c4940f1b84cb7aca0a78be4f19ccfd6f04a1 /Makefile.am | |
parent | 3ca80a73367bfbf8531ab1f38b8ec1cf2a66703e (diff) |
Makefile.am: link libicu.a before libutil.a
libicu.a depends on libutil.a.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e4e29ac70..5e468aa42 100644 --- a/Makefile.am +++ b/Makefile.am @@ -61,8 +61,8 @@ src_mpd_LDADD = \ libnet.a \ $(FS_LIBS) \ libsystem.a \ - libutil.a \ $(ICU_LDADD) \ + libutil.a \ $(SYSTEMD_DAEMON_LIBS) src_mpd_SOURCES = \ |