From 14f04c3b69811e9e8565b5a762841a23c2799fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 25 Feb 2017 19:19:32 +0000 Subject: [PATCH] rawparse: fix linking for audio/video libs Broke build in gnome continuous --- gst/rawparse/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/rawparse/Makefile.am b/gst/rawparse/Makefile.am index 0d3a3fd56f..ed8dbe4048 100644 --- a/gst/rawparse/Makefile.am +++ b/gst/rawparse/Makefile.am @@ -13,8 +13,8 @@ libgstrawparse_la_CFLAGS = \ $(GST_BASE_CFLAGS) \ $(GST_CFLAGS) libgstrawparse_la_LIBADD = \ - $(GST_PLUGINS_BASE_LIBS) \ - -lgstvideo-@GST_API_VERSION@ -lgstaudio-@GST_API_VERSION@ \ + $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la \ + $(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la \ $(GST_BASE_LIBS) \ $(GST_LIBS) libgstrawparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)