From c23c706dce96554eef20062554403fc7aac65b02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 18 Dec 2010 20:47:00 +0100 Subject: [PATCH] examples: Fix encodebin example CFLAGS and LDFLAGS Previously it would only succeed to link if a new enough libgstpbutils-0.10 was installed in the default library search path. --- tests/examples/encoding/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/examples/encoding/Makefile.am b/tests/examples/encoding/Makefile.am index 3e95e8a..2bcc902 100644 --- a/tests/examples/encoding/Makefile.am +++ b/tests/examples/encoding/Makefile.am @@ -5,7 +5,8 @@ EXTRA_DIST = gstcapslist.h noinst_PROGRAMS = $(examples) -LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la\ - -lgstpbutils-@GST_MAJORMINOR@ +LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la \ $(GST_LIBS) -AM_CFLAGS = -I$(top_builddir)/gst-libs $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) +AM_CFLAGS = -I$(top_builddir)/gst-libs \ + $(GST_PLUGINS_BASE_CFLAGS) \ + $(GST_CFLAGS) -- 2.7.4