diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2014-04-05 09:19:19 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2014-04-05 09:19:19 +0000 |
commit | 9662d1783ba91a507215048dc99ab3efa5ae23b0 (patch) | |
tree | 7bfce90d693868aaccf3a0fc5a17a0bd63d2eb1a /eclass/gst-plugins10.eclass | |
parent | re-sign commit (diff) | |
download | gentoo-2-9662d1783ba91a507215048dc99ab3efa5ae23b0.tar.gz gentoo-2-9662d1783ba91a507215048dc99ab3efa5ae23b0.tar.bz2 gentoo-2-9662d1783ba91a507215048dc99ab3efa5ae23b0.zip |
Use LC_ALL=C for tr call; fixes invalid configure options when using Turkish locale (bug #490894, thanks to Emre Eryilmaz and Samuli Suominen).
Diffstat (limited to 'eclass/gst-plugins10.eclass')
-rw-r--r-- | eclass/gst-plugins10.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gst-plugins10.eclass b/eclass/gst-plugins10.eclass index 596d4e195fd2..dd6de74a2cf0 100644 --- a/eclass/gst-plugins10.eclass +++ b/eclass/gst-plugins10.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.11 2013/09/29 17:47:13 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.12 2014/04/05 09:19:19 tetromino Exp $ # @ECLASS: gst-plugins10.eclass # @MAINTAINER: @@ -142,7 +142,7 @@ DEPEND="${DEPEND} ${RDEPEND}" gst-plugins10_get_plugins() { # Must be called from src_prepare/src_configure GST_PLUGINS_LIST=$(sed -rn 's/^AG_GST_CHECK_FEATURE\((\w+),.*/ \1 /p' \ - "${S}"/configure.* | tr '[:upper:]' '[:lower:]') + "${S}"/configure.* | LC_ALL='C' tr '[:upper:]' '[:lower:]') } # @FUNCTION: gst-plugins10_find_plugin_dir |