summaryrefslogtreecommitdiff
blob: 29bbfc44fa4f23da577f467784a8d904fd648cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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.5 2004/10/13 17:18:10 gmsoft Exp $

# Recognize 64-bit arches...
# Example:
#      64-bit && epatch ${P}-64bit.patch
# 
64-bit() {
	case "${ARCH}" in 
		alpha|*64) return 0 ;;
		*)         return 1 ;;
	esac
}