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 --- sys/oss/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys') diff --git a/sys/oss/Makefile.am b/sys/oss/Makefile.am index 0fc60f62..53e45468 100644 --- a/sys/oss/Makefile.am +++ b/sys/oss/Makefile.am @@ -5,10 +5,10 @@ plugin_LTLIBRARIES = libgstossaudio.la libgstosshelper.la libgstossaudio_la_SOURCES = gstosssink.c gstosssrc.c gstossaudio.c gstossgst.c gstossclock.c libgstossaudio_la_CFLAGS = $(GST_CFLAGS) libgstossaudio_la_LIBADD = $(GST_LIBS) -libgstossaudio_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ +libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstosshelper_la_SOURCES = gstosshelper.c -libgstosshelper_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ +libgstosshelper_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstosssink.h gstosssrc.h gstossgst.h gstosshelper.h gstossclock.h -- cgit