diff options
-rw-r--r-- | eclass/crosscompile.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/crosscompile.eclass b/eclass/crosscompile.eclass index a6ab371e78ac..fd837c9a6097 100644 --- a/eclass/crosscompile.eclass +++ b/eclass/crosscompile.eclass @@ -1,7 +1,7 @@ -# Copyright 2003 Gentoo Technologies, Inc. +# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the term of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/eclass/crosscompile.eclass,v 1.6 2003/10/26 09:12:16 vapier Exp $ # Author: Zachary T Welch -# $Header: /var/cvsroot/gentoo-x86/eclass/crosscompile.eclass,v 1.5 2003/07/18 20:11:22 tester Exp $ ECLASS=crosscompile INHERITED="$INHERITED $ECLASS" @@ -15,7 +15,7 @@ DESCRIPTION="Based on the ${ECLASS} eclass" extract-arch() { local ISSPARC=$(expr "${1}" : sparc64) - if [ $(expr "${1}" : 'i[3456]86') -eq 4 ]; then + if [ $(expr "${1}" : 'i[3456]86') -eq 4 ]; then echo "i386" elif [ $(expr "${1}" : alpha) -eq 5 ]; then echo "alpha" |