examples: Link against proper libgstaudio

It was previously attempting to link against the non-local one.
This commit is contained in:
Edward Hervey 2011-06-03 11:48:43 +02:00
parent 266a9be400
commit ac582227c1

View file

@ -2,5 +2,6 @@
noinst_PROGRAMS = testchannels
testchannels_SOURCES = testchannels.c
testchannels_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
testchannels_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(GST_LIBS)
testchannels_LDADD = $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
$(GST_PLUGINS_BASE_LIBS) $(GST_LIBS)