From 434869900ee45ea67cb58001c03afc6a116eadc6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 14 Mar 2022 18:49:44 +0100 Subject: [PATCH] android/build.py: fix typo in error message Closes https://github.com/MusicPlayerDaemon/MPD/issues/1379 --- android/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.py b/android/build.py index dd5bb2f5b..07e7d1ac3 100755 --- a/android/build.py +++ b/android/build.py @@ -13,7 +13,7 @@ android_abi = sys.argv[3] configure_args = sys.argv[4:] 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) if not os.path.isdir(ndk_path):