diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-10-26 09:12:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-10-26 09:12:16 +0000 |
commit | 38e168f84247e37efa36e8604c3072b9f77d5058 (patch) | |
tree | c73dc608311ad43db6e264c8bb6c8487a13e078c | |
parent | fix HOMEPAGE #32014 (diff) | |
download | historical-38e168f84247e37efa36e8604c3072b9f77d5058.tar.gz historical-38e168f84247e37efa36e8604c3072b9f77d5058.tar.bz2 historical-38e168f84247e37efa36e8604c3072b9f77d5058.zip |
header fix
-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" |