diff options
| -rwxr-xr-x | test/run-test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/run-test b/test/run-test index bde3aaceb9..a453f22e29 100755 --- a/test/run-test +++ b/test/run-test @@ -113,9 +113,10 @@ if [ -z "$ZIPALIGN" ]; then fi export ZIPALIGN -# If hiddenapi was not set by the environment variable, assume it is in the path. +# If hiddenapi was not set by the environment variable, assume it is in +# ANDROID_HOST_OUT. if [ -z "$HIDDENAPI" ]; then - export HIDDENAPI="hiddenapi" + export HIDDENAPI="${ANDROID_HOST_OUT}/bin/hiddenapi" fi info="info.txt" |