diff options
author | Changwoo Ryu <cwryu@debian.org> | 2009-06-26 09:30:22 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-26 09:34:11 +0100 |
commit | 1ab8c008f3f013d671abb5544fad856976051a2b (patch) | |
tree | 02682dc9d0825b565d61db6f0618b9811b86f960 | |
parent | 78a12a37a3c24e9a632d19cd67b662970c670804 (diff) | |
download | gst-plugins-bad-1ab8c008f3f013d671abb5544fad856976051a2b.tar.gz gst-plugins-bad-1ab8c008f3f013d671abb5544fad856976051a2b.tar.bz2 gst-plugins-bad-1ab8c008f3f013d671abb5544fad856976051a2b.zip |
freeze: don't build plugin static lib
Pass --tag=disable-static to libtool like we do for other plugins.
Fixes #587023.
-rw-r--r-- | gst/freeze/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/freeze/Makefile.am b/gst/freeze/Makefile.am index 525e476e..9d07aa84 100644 --- a/gst/freeze/Makefile.am +++ b/gst/freeze/Makefile.am @@ -4,6 +4,7 @@ libgstfreeze_la_SOURCES = gstfreeze.c libgstfreeze_la_CFLAGS = $(GST_CFLAGS) libgstfreeze_la_LIBADD = ${GST_LIBS} libgstfreeze_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstfreeze_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = gstfreeze.h |