libndk: fix libndk parameter

This commit is contained in:
Rikka 2023-05-25 21:34:20 +08:00
parent 910291ceb9
commit cb206cc8c0
No known key found for this signature in database
GPG key ID: CD36B07FA9F7D2AA

View file

@ -66,7 +66,7 @@ def install_app(args):
if "libndk" in app and "houdini" not in app: if "libndk" in app and "houdini" not in app:
arch = helper.host()[0] arch = helper.host()[0]
if arch == "x86_64": if arch == "x86_64":
install_list.append(Ndk()) install_list.append(Ndk(args.android_version))
else: else:
Logger.warn("libndk is not supported on your CPU") Logger.warn("libndk is not supported on your CPU")
if "libhoudini" in app and "ndk" not in app: if "libhoudini" in app and "ndk" not in app: