mirror of https://github.com/kiwix/libkiwix.git
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:
commit
2bcd43af98
|
@ -20,7 +20,7 @@ endif
|
||||||
|
|
||||||
if get_option('android')
|
if get_option('android')
|
||||||
subdir('android')
|
subdir('android')
|
||||||
install_dir = 'kiwix-lib/jniLibs/' + host_machine.cpu_family()
|
install_dir = 'kiwix-lib/jniLibs/' + meson.get_cross_property('android_abi')
|
||||||
else
|
else
|
||||||
install_dir = get_option('libdir')
|
install_dir = get_option('libdir')
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue