main/acpica: build fix for x86_64

This commit is contained in:
Natanael Copa 2012-08-17 13:06:25 +00:00
parent f33126dd50
commit 52c8f098bc

View File

@ -28,8 +28,12 @@ build() {
generate/unix/Makefile \
generate/unix/Makefile.config \
|| return 1
make BITSFLAG=-m32 || return 1
case $CARCH in
x86_64) _bits=64;;
x86) _bits=32;;
esac
make BITSFLAG=-m$_bits || return 1
}
package() {