diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-07-27 17:03:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-07-27 17:03:25 +0000 |
commit | 80c46a381c7b3d9c2c473eb723dc514d716980cc (patch) | |
tree | d2c1f94b2cf984cd16ba2655cfec1d6ba783842c /eclass | |
parent | recognize x.x.90 versions as official GNU binutils snapshots (diff) | |
download | gentoo-2-80c46a381c7b3d9c2c473eb723dc514d716980cc.tar.gz gentoo-2-80c46a381c7b3d9c2c473eb723dc514d716980cc.tar.bz2 gentoo-2-80c46a381c7b3d9c2c473eb723dc514d716980cc.zip |
use .xz for all newer binutils versions, not just hjlu ones
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index d622b7f9017d..e6beeb6eaf8e 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.116 2012/07/27 17:02:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.117 2012/07/27 17:03:25 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> # @@ -76,7 +76,7 @@ esac add_src_uri() { [[ -z $2 ]] && return local a=$1 - if [[ ${BTYPE} == "hjlu" ]] && version_is_at_least 2.22.52.0.2 ; then + if version_is_at_least 2.22.52.0.2 ; then a+=".xz" else a+=".bz2" |