diff options
author | Brad House <brad_mssw@gentoo.org> | 2003-12-23 16:51:44 +0000 |
---|---|---|
committer | Brad House <brad_mssw@gentoo.org> | 2003-12-23 16:51:44 +0000 |
commit | 5be0ed70ad5ef47c4a2ace9292baf0368b594c3b (patch) | |
tree | 93f1ea461f0af68547e70c3bb398a40f67bb47df /eclass/java.eclass | |
parent | Version bump, also uses the new eclass. (diff) | |
download | gentoo-2-5be0ed70ad5ef47c4a2ace9292baf0368b594c3b.tar.gz gentoo-2-5be0ed70ad5ef47c4a2ace9292baf0368b594c3b.tar.bz2 gentoo-2-5be0ed70ad5ef47c4a2ace9292baf0368b594c3b.zip |
amd64
Diffstat (limited to 'eclass/java.eclass')
-rw-r--r-- | eclass/java.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/java.eclass b/eclass/java.eclass index 2bc83d0cf0e2..7ca0387da855 100644 --- a/eclass/java.eclass +++ b/eclass/java.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/java.eclass,v 1.14 2003/11/08 21:40:53 strider Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java.eclass,v 1.15 2003/12/23 16:51:44 brad_mssw Exp $ # # Author: Karl Trygve Kalleberg <karltk@gentoo.org> @@ -58,9 +58,9 @@ pkg_postinst() { system_arch() { local sarch - sarch=`echo $ARCH | sed -e s/[i]*.86/i386/ -e s/x86_64/i386/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/` + sarch=`echo $ARCH | sed -e s/[i]*.86/i386/ -e s/x86_64/amd64/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/` if [ -z "$sarch" ] ; then - sarch=`uname -m | sed -e s/[i]*.86/i386/ -e s/x86_64/i386/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/` + sarch=`uname -m | sed -e s/[i]*.86/i386/ -e s/x86_64/amd64/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/` fi echo $sarch } |