diff options
author | 2010-07-28 05:17:58 +0000 | |
---|---|---|
committer | 2010-07-28 05:17:58 +0000 | |
commit | cae447bd6f2841f4581684318f1f305b75993cf8 (patch) | |
tree | 87dc511082944adecfaeea5dfb35b9eb21fc0ed5 /eclass/gst-plugins-bad.eclass | |
parent | Set proper expectations for lto. (diff) | |
download | gentoo-2-cae447bd6f2841f4581684318f1f305b75993cf8.tar.gz gentoo-2-cae447bd6f2841f4581684318f1f305b75993cf8.tar.bz2 gentoo-2-cae447bd6f2841f4581684318f1f305b75993cf8.zip |
Do not filter out the plugins being built from the list in src_configure before creating the --disable-* configure options. ./configure should guarantee us they get enabled nevertheless, as the --enable-* options are appended to it, overriding the --disable for the to be built plugins. This avoids problems in the filtering, e.g "ivorbis vorbis" getting filtered to "i" when building gst-plugins-vorbis. Fixes bug 325613
Diffstat (limited to 'eclass/gst-plugins-bad.eclass')
-rw-r--r-- | eclass/gst-plugins-bad.eclass | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/gst-plugins-bad.eclass b/eclass/gst-plugins-bad.eclass index 2b827b1cacbe..b2e2f15f2965 100644 --- a/eclass/gst-plugins-bad.eclass +++ b/eclass/gst-plugins-bad.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.29 2010/07/28 05:01:50 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.30 2010/07/28 05:17:58 leio Exp $ # # Original Author: Saleem Abdulrasool <compnerd@gentoo.org> @@ -88,10 +88,6 @@ gst-plugins-bad_src_configure() { einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." - for plugin in ${GST_PLUGINS_BUILD} ; do - my_gst_plugins_bad="${my_gst_plugins_bad/${plugin}/}" - done - for plugin in ${my_gst_plugins_bad} ; do gst_conf="${gst_conf} --disable-${plugin}" done |