summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2010-07-28 05:17:58 +0000
committerMart Raudsepp <leio@gentoo.org>2010-07-28 05:17:58 +0000
commitf516d360595597e3cf968efab19c5aa2b2a54606 (patch)
tree32772e2a2161d60bfb8340fe5bd5d17ba45250d7 /eclass/gst-plugins-ugly.eclass
parentSet proper expectations for lto. (diff)
downloadhistorical-f516d360595597e3cf968efab19c5aa2b2a54606.tar.gz
historical-f516d360595597e3cf968efab19c5aa2b2a54606.tar.bz2
historical-f516d360595597e3cf968efab19c5aa2b2a54606.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-ugly.eclass')
-rw-r--r--eclass/gst-plugins-ugly.eclass6
1 files changed, 2 insertions, 4 deletions
diff --git a/eclass/gst-plugins-ugly.eclass b/eclass/gst-plugins-ugly.eclass
index d153f2111144..59177a69a078 100644
--- a/eclass/gst-plugins-ugly.eclass
+++ b/eclass/gst-plugins-ugly.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-ugly.eclass,v 1.17 2009/11/16 06:04:12 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.18 2010/07/28 05:17:58 leio Exp $
# Author : foser <foser@gentoo.org>
@@ -55,12 +55,10 @@ gst-plugins-ugly_src_configure() {
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
- for plugin in ${GST_PLUGINS_BUILD}; do
- my_gst_plugins_ugly=${my_gst_plugins_ugly/${plugin}/}
- done
for plugin in ${my_gst_plugins_ugly}; do
gst_conf="${gst_conf} --disable-${plugin} "
done
+
for plugin in ${GST_PLUGINS_BUILD}; do
gst_conf="${gst_conf} --enable-${plugin} "
done