diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-15 20:31:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-15 20:31:52 +0000 |
commit | 4546b9e1ce023573a994c0dd15b5d5be8f2ce96d (patch) | |
tree | 5c793b2b2b7f676f9e4ec0cf53fd68945005f4e2 /eclass | |
parent | ppc stable, bug #117606 (diff) | |
download | gentoo-2-4546b9e1ce023573a994c0dd15b5d5be8f2ce96d.tar.gz gentoo-2-4546b9e1ce023573a994c0dd15b5d5be8f2ce96d.tar.bz2 gentoo-2-4546b9e1ce023573a994c0dd15b5d5be8f2ce96d.zip |
oops, had blackfin args reversed
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index f563b72abce0..30d700678b02 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.52 2006/01/15 20:21:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.53 2006/01/15 20:31:52 vapier Exp $ # # Author: Toolchain Ninjas <toolchain@gentoo.org> # @@ -96,7 +96,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } case ${host} in alpha*) echo alpha;; arm*) echo arm;; - bfin*) ninj bfin blackfin;; + bfin*) ninj blackfin bfin;; cris*) echo cris;; hppa*) ninj parisc hppa;; i?86*) ninj i386 x86;; |