aboutsummaryrefslogtreecommitdiff
path: root/ndk/checkbuild.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2020-04-08 16:21:25 -0700
committerDan Albert <danalbert@google.com>2020-04-09 14:19:06 -0700
commit09462e08bb673eb9cf7cc88a44477f4e4c9d91ef (patch)
treee98737d82ec5a90fe4055f792bfa55ebde439b47 /ndk/checkbuild.py
parent7e3da0047654ca97f6c719d8eaac6a8d6a92c3e9 (diff)
downloadndk-09462e08bb673eb9cf7cc88a44477f4e4c9d91ef.tar.gz
Fix `FileModule`.
The meaning of `path` was accidentally changed from a file path to a parent directory path. Test: ls Bug: https://github.com/android/ndk/issues/1229 Change-Id: Ie59051d8f20212f202e268bc727feef3aba26ad6
Diffstat (limited to 'ndk/checkbuild.py')
-rwxr-xr-xndk/checkbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndk/checkbuild.py b/ndk/checkbuild.py
index 6a1e82830..32bbcf2c3 100755
--- a/ndk/checkbuild.py
+++ b/ndk/checkbuild.py
@@ -717,7 +717,7 @@ class Yasm(ndk.builds.AutoconfModule):
class NdkWhich(ndk.builds.FileModule):
name = 'ndk-which'
- path = 'prebuilt/{host}/bin'
+ path = 'prebuilt/{host}/bin/ndk-which'
src = ndk.paths.ndk_path('ndk-which')