package/ljsyscall: fix build with aarch64

luajit supports aarch64 since commit
2ca0accc21a090874ac6e97670b47153a1f0a0b5

However this raise a build failure with ljsyscall because aarch64
directory does not exist so use arm64 instead

Fixes:
 - http://autobuild.buildroot.org/results/3a0bd14349b3cab3e09d0b8b24ddab66dfab91ff

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2019-12-13 23:09:11 +01:00 committed by Thomas Petazzoni
parent dbc161e816
commit ac31b3465f

View File

@ -18,6 +18,8 @@ else ifeq ($(BR2_powerpc),y)
LJSYSCALL_ARCH = ppc LJSYSCALL_ARCH = ppc
else ifeq ($(BR2_arm)$(BR2_armeb),y) else ifeq ($(BR2_arm)$(BR2_armeb),y)
LJSYSCALL_ARCH = arm LJSYSCALL_ARCH = arm
else ifeq ($(BR2_aarch64),y)
LJSYSCALL_ARCH = arm64
else ifeq ($(BR2_mips)$(BR2_mipsel),y) else ifeq ($(BR2_mips)$(BR2_mipsel),y)
LJSYSCALL_ARCH = mips LJSYSCALL_ARCH = mips
else else