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 | a6c86c339479cbbd0d53028d1e5bdfcffe4c185a (patch) | |
tree | 08461b61cfc4123ab9568444e5d1d589922da990 | |
parent | stable on amd64 (Manifest recommit) (diff) | |
download | gentoo-2-a6c86c339479cbbd0d53028d1e5bdfcffe4c185a.tar.gz gentoo-2-a6c86c339479cbbd0d53028d1e5bdfcffe4c185a.tar.bz2 gentoo-2-a6c86c339479cbbd0d53028d1e5bdfcffe4c185a.zip |
Work on comments
-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 ;; |