From 0f1d7549324aa62357580b1b35e61bec6b6482ab Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Mar 2002 01:39:42 +0000 Subject: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagi... Original commit message from CVS: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagically, and this gives the user the freedom to say make GST_PLUGIN_LDFLAGS=-myflag --- ext/esd/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/esd') diff --git a/ext/esd/Makefile.am b/ext/esd/Makefile.am index f1a23da6..2c3c1e80 100644 --- a/ext/esd/Makefile.am +++ b/ext/esd/Makefile.am @@ -5,12 +5,12 @@ plugin_LTLIBRARIES = libesdsink.la libesdmon.la libesdsink_la_SOURCES = esdsink.c libesdsink_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS) libesdsink_la_LIBADD = $(GST_LIBS) $(ESD_LIBS) -libesdsink_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ +libesdsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libesdmon_la_SOURCES = esdmon.c libesdmon_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS) libesdmon_la_LIBADD = $(GST_LIBS) $(ESD_LIBS) -libesdmon_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ +libesdmon_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = esdsink.h EXTRA_DIST = README -- cgit