community/openjdk7: set correct _jarch on aarch64

This commit is contained in:
Carlo Landmeter 2016-08-25 11:24:14 +00:00
parent beabbad997
commit ec93ed40c0

View File

@ -28,12 +28,13 @@ RHINO_VER=1.7.7.1
ANT_VER=1.9.7
case $CARCH in
x86) _jarch=i386;;
x86_64) _jarch=amd64;;
arm*) _jarch=arm
# openjdk has quite a bit of arm assembly producing textrels
# and it's non trivial to fix. allow it for now.
options="$options textrels";;
x86) _jarch=i386;;
x86_64) _jarch=amd64;;
aarch64) _jarch=aarch64;;
arm*) _jarch=arm
# openjdk has quite a bit of arm assembly producing textrels
# and it's non trivial to fix. allow it for now.
options="$options textrels";;
esac
INSTALL_BASE=/usr/lib/jvm/java-1.7-openjdk