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 | bfa57f4f8bf922dacd5f37ac169e1a3201f3acbc (patch) | |
tree | 025a0faa33e23659e4e8f439349bafc525f0e447 /eclass/toolchain-binutils.eclass | |
parent | Add ~alpha keyword. (diff) | |
download | historical-bfa57f4f8bf922dacd5f37ac169e1a3201f3acbc.tar.gz historical-bfa57f4f8bf922dacd5f37ac169e1a3201f3acbc.tar.bz2 historical-bfa57f4f8bf922dacd5f37ac169e1a3201f3acbc.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 |