2016-05-16, 15:37
Hello,
When trying to run ./configure --with-ndk=... according to the instructions from master/docs/README.android
it failed with the following error message: 'android-ndk-r11c' is not an NDK directory.
This comes from configure.ac (line 459) testing for 'RELEASE.TXT' in the ndk directory
The RELEASE.TXT file doesn't exist from ndk revision 11 and on.
I'm checking whether kodi compiles with ndk 11 and on (I guss is is).
What should be the correct way to check the ndk existence ?
I will fix the configure.ac file to the proposed way and submit a patch.
Regards,
Vadim.
When trying to run ./configure --with-ndk=... according to the instructions from master/docs/README.android
it failed with the following error message: 'android-ndk-r11c' is not an NDK directory.
This comes from configure.ac (line 459) testing for 'RELEASE.TXT' in the ndk directory
Code:
if ! test -f "$use_ndk/RELEASE.TXT" ; then
AC_MSG_ERROR("$use_ndk is not an NDK directory")
fi
The RELEASE.TXT file doesn't exist from ndk revision 11 and on.
I'm checking whether kodi compiles with ndk 11 and on (I guss is is).
What should be the correct way to check the ndk existence ?
I will fix the configure.ac file to the proposed way and submit a patch.
Regards,
Vadim.