diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-11-04 12:34:30 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-11-04 12:34:30 +0000 |
commit | d72e16c63b39728ffc1f96251d6953ffd99abff5 (patch) | |
tree | 464c517470abe6b54cb8f0d04d258ec49ba26903 /gst-plugin | |
parent | 250d72a3de4139a494e53a52e3c67d15fb472443 (diff) |
src/Makefile.am: Don't install static libs for plugins. Fixes #550851 for the template.GIT_CONVERSION
Original commit message from CVS:
* src/Makefile.am:
Don't install static libs for plugins. Fixes #550851 for the template.
Diffstat (limited to 'gst-plugin')
-rw-r--r-- | gst-plugin/ChangeLog | 5 | ||||
-rw-r--r-- | gst-plugin/src/Makefile.am | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gst-plugin/ChangeLog b/gst-plugin/ChangeLog index 3ee08e3..5c25746 100644 --- a/gst-plugin/ChangeLog +++ b/gst-plugin/ChangeLog @@ -1,3 +1,8 @@ +2008-11-04 Stefan Kost <ensonic@users.sf.net> + + * src/Makefile.am: + Don't install static libs for plugins. Fixes #550851 for the template. + 2008-10-30 Stefan Kost <ensonic@users.sf.net> * tools/make_element: diff --git a/gst-plugin/src/Makefile.am b/gst-plugin/src/Makefile.am index ddf3180..8efd485 100644 --- a/gst-plugin/src/Makefile.am +++ b/gst-plugin/src/Makefile.am @@ -21,6 +21,7 @@ libgstplugin_la_SOURCES = gstplugin.c libgstplugin_la_CFLAGS = $(GST_CFLAGS) libgstplugin_la_LIBADD = $(GST_LIBS) libgstplugin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstplugin_la_LIBTOOLFLAGS = --tag=disable-static # headers we need but don't want installed noinst_HEADERS = gstplugin.h |