summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-02-25 15:13:40 +0000
committerTim-Philipp Müller <tim@centricular.com>2014-02-25 15:13:40 +0000
commitc3896849b2d4b9feb93d98d7f75ee91570bf1ce2 (patch)
tree3cdea260f7af614b55cf8e0746fa998eb6ae14d2 /examples
parentea63932bd294134f83ed0082b69937cec091605a (diff)
examples: use LDADD for libs instead of LDFLAGS
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 0fc67c3..9bf2198 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -5,10 +5,10 @@ noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme \
#INCLUDES = -I$(top_srcdir) -I$(srcdir)
AM_CFLAGS = $(GST_OBJ_CFLAGS)
-AM_LDFLAGS = $(GST_OBJ_LIBS) $(GIO_LIBS)
+LDADD = $(GST_OBJ_LIBS) $(GIO_LIBS)
if HAVE_LIBCGROUP
noinst_PROGRAMS += test-cgroups
-AM_LDFLAGS += $(LIBCGROUP_LIBS)
+LDADD += $(LIBCGROUP_LIBS)
endif