From: Thomas Vander Stichele Date: Fri, 2 Dec 2005 12:28:03 +0000 (+0000) Subject: fix silly Makefile.am bug so they link correctly again X-Git-Tag: 1.19.3~505^2~2086 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df9edcd5839c0e38924e5ca085377a1333caf5e3;p=platform%2Fupstream%2Fgstreamer.git fix silly Makefile.am bug so they link correctly again Original commit message from CVS: * ext/amrnb/Makefile.am: * gst/realmedia/Makefile.am: fix silly Makefile.am bug so they link correctly again --- diff --git a/ChangeLog b/ChangeLog index b084423..409187c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-12-02 Thomas Vander Stichele + + * ext/amrnb/Makefile.am: + * gst/realmedia/Makefile.am: + fix silly Makefile.am bug so they link correctly again + === release 0.9.7 === 2005-12-01 diff --git a/ext/amrnb/Makefile.am b/ext/amrnb/Makefile.am index 59895d6..48e9a38 100644 --- a/ext/amrnb/Makefile.am +++ b/ext/amrnb/Makefile.am @@ -7,7 +7,7 @@ libgstamrnb_la_SOURCES = \ amrnbparse.c libgstamrnb_la_CFLAGS = $(GST_CFLAGS) $(AMRNB_CFLAGS) -libgstamrnb_la_LIBS = $(GST_BASE_LIBS) $(AMRNB_LIBS) +libgstamrnb_la_LIBADD = $(GST_BASE_LIBS) $(AMRNB_LIBS) libgstamrnb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = \ diff --git a/gst/realmedia/Makefile.am b/gst/realmedia/Makefile.am index 9b6b345..9769097 100644 --- a/gst/realmedia/Makefile.am +++ b/gst/realmedia/Makefile.am @@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstrmdemux.la libgstrmdemux_la_SOURCES = rmdemux.c libgstrmdemux_la_CFLAGS = $(GST_CFLAGS) -libgstrmdemux_la_LIBS = $(GST_BASE_LIBS) +libgstrmdemux_la_LIBADD = $(GST_BASE_LIBS) libgstrmdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = rmdemux.h