From 83679ef8f88e8e81511c9ecd1cbb7c8f60115bb2 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Mon, 7 Feb 2011 09:13:39 +0200 Subject: [PATCH] check: Really fix the linking order of libs/tag Follow-up to commit 5f5c52c, which only fixed the CFLAGS order. Fix the linker order as well. --- tests/check/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index ee9981916f..c5bd554623 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -290,8 +290,8 @@ libs_tag_CFLAGS = \ $(GST_BASE_CFLAGS) \ $(AM_CFLAGS) libs_tag_LDADD = \ - $(GST_BASE_LIBS) \ - $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la $(LDADD) + $(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \ + $(GST_BASE_LIBS) $(LDADD) libs_pbutils_CFLAGS = \ $(GST_PLUGINS_BASE_CFLAGS) \