From 1ea0574af4f810843333ec2b99edd5f252c3dd08 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 13 Jul 2005 17:58:07 +0000 Subject: make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be added manually to each Makefile.am so we are sure it goes Original commit message from CVS: make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be added manually to each Makefile.am so we are sure it goes *last* and doesn't add -L flags before linking in libs of our own, like, say, internal .la libs, that then accidentally pick up the installed copy. --- gst/adder/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gst/adder') diff --git a/gst/adder/Makefile.am b/gst/adder/Makefile.am index cba7c4853..54b043d13 100644 --- a/gst/adder/Makefile.am +++ b/gst/adder/Makefile.am @@ -1,9 +1,8 @@ - plugin_LTLIBRARIES = libgstadder.la libgstadder_la_SOURCES = gstadder.c libgstadder_la_CFLAGS = $(GST_CFLAGS) -libgstadder_la_LIBADD = -libgstadder_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) +libgstadder_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstadder_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) noinst_HEADERS = gstadder.h -- cgit v1.2.3