From c3896849b2d4b9feb93d98d7f75ee91570bf1ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 25 Feb 2014 15:13:40 +0000 Subject: [PATCH] examples: use LDADD for libs instead of LDFLAGS --- examples/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index 0fc67c3d45..9bf2198a05 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