diff options
author | 2003-06-22 05:44:04 +0000 | |
---|---|---|
committer | 2003-06-22 05:44:04 +0000 | |
commit | 774dce2172429e848348152637ff71fe70320ad1 (patch) | |
tree | 606f7937dbfc0afcb47abe78350ec70ec061d821 /eclass | |
parent | amd64 support (diff) | |
download | historical-774dce2172429e848348152637ff71fe70320ad1.tar.gz historical-774dce2172429e848348152637ff71fe70320ad1.tar.bz2 historical-774dce2172429e848348152637ff71fe70320ad1.zip |
amd64 fix
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 89c4085d58a1..f4f8798fe572 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.34 2003/06/21 09:23:24 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.35 2003/06/22 05:44:04 drobbins Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -402,7 +402,7 @@ get_number_of_jobs() { export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" - if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ + if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] then # these archs will always have "[Pp]rocessor" |