From b75c7065cc9ab66040f6e0dccbebfc31281f9e71 Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Thu, 12 Jul 2018 11:37:09 -0600 Subject: [PATCH] Travis CI: Fix comments disabling code. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 .travis.yml diff --git a/.travis.yml b/.travis.yml old mode 100644 new mode 100755 index 67bc2735b..20da5f427 --- a/.travis.yml +++ b/.travis.yml @@ -49,10 +49,10 @@ install: export CC=clang-3.6 CXX=clang++-3.6; fi # Download Android NDK and Android CMake toolchain file. + # Unfortunately the android.toolchain.cmake file does not understand how to + # get the API level from Android NDK r17b. So fall back on r13b. + # Get only one commit at tag r13b. - if [[ "$BUILD_NDK" == "ON" ]]; then - # Unfortunately the android.toolchain.cmake file does not understand how to - # get the API level from Android NDK r17b. So fall back on r13b. - # Get only one commit at tag r13b. export ANDROID_NDK=$HOME/android-ndk; git init $ANDROID_NDK; pushd $ANDROID_NDK;