diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-03-09 17:08:38 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-03-09 17:08:38 +0000 |
commit | 4ac33d8b0b098904977420dc97fe7e0fa577a0a4 (patch) | |
tree | cecd09c2c304a2682fc31f89a26046fdd0aaadbc /eclass | |
parent | fix patch path (diff) | |
download | gentoo-2-4ac33d8b0b098904977420dc97fe7e0fa577a0a4.tar.gz gentoo-2-4ac33d8b0b098904977420dc97fe7e0fa577a0a4.tar.bz2 gentoo-2-4ac33d8b0b098904977420dc97fe7e0fa577a0a4.zip |
Syntax fix.
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 733471f73907..a5b7415e244e 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.27 2005/03/09 17:07:06 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.28 2005/03/09 17:08:38 azarah Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -234,7 +234,7 @@ toolchain-binutils_pkg_postrm() { else binutils-config ${choice} fi - elif [[ $(CHOST=${CTARGET} binutils-config -c) = ${CTARGET}-${PV} ]] ; then + elif [[ $(CHOST=${CTARGET} binutils-config -c) == ${CTARGET}-${PV} ]] ; then binutils-config ${CTARGET}-${PV} fi } |