diff options
author | Mart Raudsepp <leio@gentoo.org> | 2010-07-28 05:17:58 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2010-07-28 05:17:58 +0000 |
commit | cae447bd6f2841f4581684318f1f305b75993cf8 (patch) | |
tree | 87dc511082944adecfaeea5dfb35b9eb21fc0ed5 /eclass/gst-plugins-good.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-good.eclass')
-rw-r--r-- | eclass/gst-plugins-good.eclass | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/eclass/gst-plugins-good.eclass b/eclass/gst-plugins-good.eclass index e814860c7e71..3ccedd29e00b 100644 --- a/eclass/gst-plugins-good.eclass +++ b/eclass/gst-plugins-good.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.19 2010/04/03 05:49:50 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.20 2010/07/28 05:17:58 leio Exp $ # Author : foser <foser@gentoo.org>, zaheerm <zaheerm@gentoo.org> @@ -61,12 +61,10 @@ gst-plugins-good_src_configure() { einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..." - for plugin in ${GST_PLUGINS_BUILD}; do - my_gst_plugins_good=${my_gst_plugins_good/${plugin}/} - done for plugin in ${my_gst_plugins_good}; do gst_conf="${gst_conf} --disable-${plugin} " done + for plugin in ${GST_PLUGINS_BUILD}; do gst_conf="${gst_conf} --enable-${plugin} " done |