diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-05-28 18:53:20 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-05-28 18:53:20 +0000 |
commit | b60c0070503bdaed01990a88def851807530a2c0 (patch) | |
tree | 801a5a1fcce9d8645956b5e779b54ce32bb6875e /eclass | |
parent | Spring cleanup (diff) | |
download | gentoo-2-b60c0070503bdaed01990a88def851807530a2c0.tar.gz gentoo-2-b60c0070503bdaed01990a88def851807530a2c0.tar.bz2 gentoo-2-b60c0070503bdaed01990a88def851807530a2c0.zip |
Fix ABI flag stripping in multilib_get_enabled_abis(), bug #511682.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/multilib-build.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 74e1cc485246..90eb2acf74b6 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1276 2014/05/28 09:48:01 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1277 2014/05/28 18:53:20 mgorny Exp $ + + 28 May 2014; Michał Górny <mgorny@gentoo.org> multilib-build.eclass: + Fix ABI flag stripping in multilib_get_enabled_abis(), bug #511682. 28 May 2014; Justin Lecher <jlec@gentoo.org> portability.eclass: Add documentation for man page; add missing die diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index 128f1ae2f313..6b4b468d02ca 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.54 2014/05/23 17:11:10 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.55 2014/05/28 18:53:20 mgorny Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -125,7 +125,7 @@ multilib_get_enabled_abis() { debug-print-function ${FUNCNAME} "${@}" local pairs=( $(multilib_get_enabled_abi_pairs) ) - echo "${pairs[@]#*:}" + echo "${pairs[@]#*.}" } # @FUNCTION: multilib_get_enabled_abi_pairs |