android/build.py: fix typo in error message

Closes https://github.com/MusicPlayerDaemon/MPD/issues/1379
This commit is contained in:
Max Kellermann 2022-03-14 18:49:44 +01:00
parent 2aed7378cc
commit 434869900e
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ android_abi = sys.argv[3]
configure_args = sys.argv[4:] configure_args = sys.argv[4:]
if not os.path.isfile(os.path.join(sdk_path, 'tools', 'android')): if not os.path.isfile(os.path.join(sdk_path, 'tools', 'android')):
print("SDK not found in", ndk_path, file=sys.stderr) print("SDK not found in", sdk_path, file=sys.stderr)
sys.exit(1) sys.exit(1)
if not os.path.isdir(ndk_path): if not os.path.isdir(ndk_path):