diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 11:24:14 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 11:24:26 +0000 |
commit | ec93ed40c08ae8af196fd752f8d998627dff182c (patch) | |
tree | 7c0441a886cebf5e9e496cf5dd9722eb9d027e68 /community/openjdk7 | |
parent | beabbad99781714acd7bff0de8a16ac8ee242f15 (diff) | |
download | aports-ec93ed40c08ae8af196fd752f8d998627dff182c.tar.bz2 aports-ec93ed40c08ae8af196fd752f8d998627dff182c.tar.xz |
community/openjdk7: set correct _jarch on aarch64
Diffstat (limited to 'community/openjdk7')
-rw-r--r-- | community/openjdk7/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/community/openjdk7/APKBUILD b/community/openjdk7/APKBUILD index b2fc312c69..2e8e7ff714 100644 --- a/community/openjdk7/APKBUILD +++ b/community/openjdk7/APKBUILD @@ -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 |