diff options
author | Jose Luis Marti <joseluis.marti@gmail.com> | 2023-10-21 21:54:16 +0200 |
---|---|---|
committer | Jose Luis Marti <joseluis.marti@gmail.com> | 2023-10-31 15:54:26 +0100 |
commit | 9a491c05edba249cdde73530dc3cd90098f717f1 (patch) | |
tree | a8290082a9ab390627a1315ced70d90f2f8c282b /tools | |
parent | 55c05bdc51ba60de0bfe6ba9e93944327d13760e (diff) |
[Android] Change the directory used to verify the SDK path
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/configure.ac b/tools/depends/configure.ac index d93e4aab5e..58e5f8e873 100644 --- a/tools/depends/configure.ac +++ b/tools/depends/configure.ac @@ -570,7 +570,7 @@ if test "$platform_os" = "android"; then AC_MSG_ERROR("SDK path is required for android") fi - if [ ! test -f $use_sdk_path/tools/bin/sdkmanager ]; then + if [ ! test -f $use_sdk_path/tools/bin/sdkmanager ] && [ ! test -f $use_sdk_path/cmdline-tools/bin/sdkmanager ]; then AC_MSG_ERROR(verify sdk path) fi |