diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-05 02:58:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-05 02:58:42 +0000 |
commit | 446a983785061e2357860dfe8fa1fb18fe02ba96 (patch) | |
tree | 1f6a2da54101b991834ac88ededa79d97b87448d /eclass | |
parent | remove most references to 64-bit eclass (diff) | |
download | gentoo-2-446a983785061e2357860dfe8fa1fb18fe02ba96.tar.gz gentoo-2-446a983785061e2357860dfe8fa1fb18fe02ba96.tar.bz2 gentoo-2-446a983785061e2357860dfe8fa1fb18fe02ba96.zip |
this eclass is a horrible horrible hack, dont let anyone use it anymore
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/64-bit.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/64-bit.eclass b/eclass/64-bit.eclass index 29bbfc44fa4f..f3abd2d233a0 100644 --- a/eclass/64-bit.eclass +++ b/eclass/64-bit.eclass @@ -1,12 +1,14 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/64-bit.eclass,v 1.5 2004/10/13 17:18:10 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/64-bit.eclass,v 1.6 2005/05/05 02:58:42 vapier Exp $ # Recognize 64-bit arches... # Example: # 64-bit && epatch ${P}-64bit.patch # 64-bit() { + [[ ${PN} != "R" && ${PN} != "rxvt-unicode" ]] && die "DO NOT USE THIS ECLASS" + case "${ARCH}" in alpha|*64) return 0 ;; *) return 1 ;; |