tools: fix linking problems caused by accidentally linking against installed pbutils/gstvideo libs

Fixes build errors in jhbuild:
/foo/build/gst-plugins-base/gst-libs/gst/video/.libs/libgstvideo-0.10.so: undefined reference to `gst_element_factory_list_get_elements'
../gst-libs/gst/pbutils/.libs/libgstpbutils-0.10.so: undefined reference to `gst_element_link_pads_full'
/foo/build/gst-plugins-base/gst-libs/gst/video/.libs/libgstvideo-0.10.so: undefined reference to `gst_element_factory_list_filter'
../gst-libs/gst/pbutils/.libs/libgstpbutils-0.10.so: undefined reference to `gst_pad_link_full'
/foo/build/gst-plugins-base/gst-libs/gst/video/.libs/libgstvideo-0.10.so: undefined reference to `gst_plugin_feature_list_debug'
This commit is contained in:
Tim-Philipp Müller 2010-10-21 13:07:34 +01:00
parent be36a64c57
commit 3a2dc6f518

View file

@ -14,7 +14,6 @@ EXTRA_DIST = \
gst-discoverer.c gst-discoverer.c
LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la\ LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la\
-lgstpbutils-@GST_MAJORMINOR@ \
$(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_MAJORMINOR@.la\ $(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_MAJORMINOR@.la\
$(GST_BASE_LIBS) $(GST_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)