From c30d0dd82afc63b204d9993bdd21a6138994c796 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Mar 2002 01:39:42 +0000 Subject: [PATCH] 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/lame/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/lame/Makefile.am b/ext/lame/Makefile.am index 9d01f150f1..535635ec6a 100644 --- a/ext/lame/Makefile.am +++ b/ext/lame/Makefile.am @@ -5,7 +5,7 @@ plugin_LTLIBRARIES = libgstlame.la libgstlame_la_SOURCES = gstlame.c libgstlame_la_CFLAGS = $(GST_CFLAGS) libgstlame_la_LIBADD = $(GST_LIBS) $(LAME_LIBS) -libgstlame_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ +libgstlame_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstlame.h