From: Andy Wingo Date: Tue, 19 Mar 2002 01:39:42 +0000 (+0000) Subject: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are... X-Git-Tag: 1.19.3~509^2~1916^2~188 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c30d0dd82afc63b204d9993bdd21a6138994c796;p=platform%2Fupstream%2Fgstreamer.git 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 --- diff --git a/ext/lame/Makefile.am b/ext/lame/Makefile.am index 9d01f15..535635e 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