diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-07-11 15:08:07 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-07-11 15:08:07 +0000 |
commit | a18b8c502d697dde5b46e9fa54867d99d8528c63 (patch) | |
tree | 5e3d3675e2764dc2b1589043df9a5864c250ca17 /eclass/64-bit.eclass | |
parent | Update to support selinux USE flag (blame spb). (diff) | |
download | historical-a18b8c502d697dde5b46e9fa54867d99d8528c63.tar.gz historical-a18b8c502d697dde5b46e9fa54867d99d8528c63.tar.bz2 historical-a18b8c502d697dde5b46e9fa54867d99d8528c63.zip |
QA: Apply whitespace checks from repoman to eclasses.
Diffstat (limited to 'eclass/64-bit.eclass')
-rw-r--r-- | eclass/64-bit.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/64-bit.eclass b/eclass/64-bit.eclass index f3abd2d233a0..3444bf5c7f29 100644 --- a/eclass/64-bit.eclass +++ b/eclass/64-bit.eclass @@ -1,15 +1,16 @@ # 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.6 2005/05/05 02:58:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/64-bit.eclass,v 1.7 2005/07/11 15:08:06 swegener 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 + case "${ARCH}" in alpha|*64) return 0 ;; *) return 1 ;; esac |