summaryrefslogtreecommitdiff
path: root/gst/adder
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-07-13 17:58:07 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-07-13 17:58:07 +0000
commit1ea0574af4f810843333ec2b99edd5f252c3dd08 (patch)
tree5148540de7fd8f6c59d6545315aec17bf2839499 /gst/adder
parent7bfdb23652ff2088547eb314748e9e0ffcebc173 (diff)
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.
Diffstat (limited to 'gst/adder')
-rw-r--r--gst/adder/Makefile.am5
1 files changed, 2 insertions, 3 deletions
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