summaryrefslogtreecommitdiffstats
path: root/sys/oss/Makefile.am
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-19 01:39:42 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-19 01:39:42 +0000
commit0f1d7549324aa62357580b1b35e61bec6b6482ab (patch)
treea58964131d7fc760389b5d30440027cdc3f79a0c /sys/oss/Makefile.am
parent0dd72c66b4424e1c988ad310667c0877b9edc123 (diff)
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
Diffstat (limited to 'sys/oss/Makefile.am')
-rw-r--r--sys/oss/Makefile.am4
1 files changed, 2 insertions, 2 deletions
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