diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2005-06-13 10:18:05 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2005-06-13 10:18:05 +0000 |
commit | 7d6b1ca76a90b90ec3790dca2d8a86ad3e9e6f45 (patch) | |
tree | fd9e3cf34697b7310de8510b6816a6f948b61750 /eclass/toolchain-binutils.eclass | |
parent | Add ~alpha keyword. (diff) | |
download | gentoo-2-7d6b1ca76a90b90ec3790dca2d8a86ad3e9e6f45.tar.gz gentoo-2-7d6b1ca76a90b90ec3790dca2d8a86ad3e9e6f45.tar.bz2 gentoo-2-7d6b1ca76a90b90ec3790dca2d8a86ad3e9e6f45.zip |
fix a typo, solves bug #95928
Diffstat (limited to 'eclass/toolchain-binutils.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 f8370ec6418f..ae74aa7b0b07 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.37 2005/05/28 05:51:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.38 2005/06/13 10:18:05 lu_zero Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -238,7 +238,7 @@ toolchain-binutils_pkg_postinst() { toolchain-binutils_pkg_postrm() { local choice=$(binutils-config -l | grep ${CTARGET} | grep -v ${CTARGET}-${PV}) - choice=${choice/* } + choice=${choice/\* } # If no other versions exist, then uninstall for this # target ... otherwise, switch to the newest version |