Merge pull request #55 from kiwix/fix_android_dirname

Use the cpu name instead of cpu_family as install dir name.
This commit is contained in:
Matthieu Gautier 2017-06-14 10:26:28 +02:00 committed by GitHub
commit 2bcd43af98
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ endif
if get_option('android')
subdir('android')
install_dir = 'kiwix-lib/jniLibs/' + host_machine.cpu_family()
install_dir = 'kiwix-lib/jniLibs/' + meson.get_cross_property('android_abi')
else
install_dir = get_option('libdir')
endif