From 8367d7e6f4a05d7a1ff2f5eb03af7593687fac0f Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 5 Nov 2018 12:00:55 +0100 Subject: [PATCH] examples: Fix libgstvideo linking Use the local libgstvideo (and not the system wide one) --- tests/examples/overlaycomposition/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/examples/overlaycomposition/Makefile.am b/tests/examples/overlaycomposition/Makefile.am index f9ecdc3..e4e3e6f 100644 --- a/tests/examples/overlaycomposition/Makefile.am +++ b/tests/examples/overlaycomposition/Makefile.am @@ -2,4 +2,4 @@ noinst_PROGRAMS = overlaycomposition overlaycomposition_SOURCES = overlaycomposition.c overlaycomposition_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS) -overlaycomposition_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_LIBS) $(GIO_LIBS) $(LIBM) +overlaycomposition_LDADD = $(GST_PLUGINS_BASE_LIBS) $(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la $(GST_LIBS) $(GIO_LIBS) $(LIBM) -- 2.7.4