diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2004-09-21 12:38:52 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2004-09-21 12:38:52 +0000 |
commit | 4dbc8e9b0734c2626c1f9c2f320b95eece484048 (patch) | |
tree | dde5548535a71bed6787053ebbced0e8eee3dd16 /eclass/64-bit.eclass | |
parent | stable on amd64 (diff) | |
download | historical-4dbc8e9b0734c2626c1f9c2f320b95eece484048.tar.gz historical-4dbc8e9b0734c2626c1f9c2f320b95eece484048.tar.bz2 historical-4dbc8e9b0734c2626c1f9c2f320b95eece484048.zip |
Work on comments
Diffstat (limited to 'eclass/64-bit.eclass')
-rw-r--r-- | eclass/64-bit.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/64-bit.eclass b/eclass/64-bit.eclass index 55dc7087578a..444ca19ca942 100644 --- a/eclass/64-bit.eclass +++ b/eclass/64-bit.eclass @@ -1,16 +1,16 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/64-bit.eclass,v 1.3 2004/06/25 00:39:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/64-bit.eclass,v 1.4 2004/09/21 12:38:52 kugelfang Exp $ -# Recognize 64-bit arches... This is to help when adding -fPIC, for -# example: -# -# 64-bit && append-flags -fPIC +# Recognize 64-bit arches... +# Example: +# 64-bit && epatch ${P}-64bit.patch # 64-bit() { case "${ARCH}" in alpha|*64) return 0 ;; + # FIXME: Remove this asap when BUG #55238 is fixed #hppa is not 64 bit but needs -fPIC too hppa) return 0 ;; |