From 65c987b4958fb50f7efe2ce54a2151dfcc724716 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sun, 13 May 2018 23:31:22 +0100 Subject: [PATCH] examples: gl: sdl: link to the right in-tree libgstvideo https://bugzilla.gnome.org/show_bug.cgi?id=796082 --- tests/examples/gl/sdl/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/examples/gl/sdl/Makefile.am b/tests/examples/gl/sdl/Makefile.am index dd575097d5..7600c076e4 100644 --- a/tests/examples/gl/sdl/Makefile.am +++ b/tests/examples/gl/sdl/Makefile.am @@ -16,7 +16,7 @@ sdlshare_CFLAGS= \ $(SDL_CFLAGS) sdlshare_LDADD= $(GST_LIBS) $(GL_LIBS) $(SDL_LIBS) \ $(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la \ - -lgstvideo-$(GST_API_VERSION) + $(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_API_VERSION).la sdlshare2_SOURCES = sdlshare2.c @@ -29,6 +29,6 @@ sdlshare2_CFLAGS= \ $(SDL_CFLAGS) sdlshare2_LDADD= $(GST_LIBS) $(GL_LIBS) $(SDL_LIBS) \ $(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la \ - -lgstvideo-$(GST_API_VERSION) + $(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_API_VERSION).la endif