From be3359fc6781fc3123c023d614959e47cf075969 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 3 May 2016 00:04:57 +0200 Subject: [PATCH] Makefile.am: fix library link order --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 543e53a5c..7e5701ab4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1806,10 +1806,10 @@ test_dump_text_file_SOURCES = test/dump_text_file.cxx \ test_dump_playlist_LDADD = \ $(PLAYLIST_LIBS) \ $(FLAC_LIBS) \ - $(INPUT_LIBS) \ - $(ARCHIVE_LIBS) \ $(DECODER_LIBS) \ $(TAG_LIBS) \ + $(INPUT_LIBS) \ + $(ARCHIVE_LIBS) \ libconf.a \ libevent.a \ libthread.a \