diff options
author | Guy Martin <gmsoft@gentoo.org> | 2003-12-21 23:27:59 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2003-12-21 23:27:59 +0000 |
commit | 4a837db98b22419d3e059527781bd1d1f64170ab (patch) | |
tree | 71f9c6e81f89baf241442f31796e19624d6b23c8 /eclass/64-bit.eclass | |
parent | fix up messages in init file (diff) | |
download | historical-4a837db98b22419d3e059527781bd1d1f64170ab.tar.gz historical-4a837db98b22419d3e059527781bd1d1f64170ab.tar.bz2 historical-4a837db98b22419d3e059527781bd1d1f64170ab.zip |
Added hppa to 64bit.eclass
Diffstat (limited to 'eclass/64-bit.eclass')
-rw-r--r-- | eclass/64-bit.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/64-bit.eclass b/eclass/64-bit.eclass index 88a58f35e773..e656b843da40 100644 --- a/eclass/64-bit.eclass +++ b/eclass/64-bit.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/64-bit.eclass,v 1.1 2003/12/10 23:51:48 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/64-bit.eclass,v 1.2 2003/12/21 23:27:59 gmsoft Exp $ # Recognize 64-bit arches... This is to help when adding -fPIC, for # example: @@ -10,6 +10,10 @@ 64-bit() { case "${ARCH}" in alpha|*64) return 0 ;; + + #hppa is not 64 bit but needs -fPIC too + hppa) return 0 ;; + *) return 1 ;; esac } |