Android toolchain: fix CCache program search

This commit is contained in:
Andrey Kamaev 2012-08-28 20:39:10 +04:00
parent cd59cf3ab5
commit 0adbead654

View File

@ -690,12 +690,13 @@ if( BUILD_WITH_ANDROID_NDK )
endif()
# ccache support
__INIT_VARIABLE( NDK_CCACHE ENV_NDK_CCACHE )
if( NDK_CCACHE )
find_program(NDK_CCACHE "${NDK_CCACHE}" DOC "The path to ccache binary")
__INIT_VARIABLE( _ndk_ccache NDK_CCACHE ENV_NDK_CCACHE )
if( _ndk_ccache )
find_program( NDK_CCACHE "${_ndk_ccache}" DOC "The path to ccache binary")
else()
unset( NDK_CCACHE )
unset( NDK_CCACHE CACHE )
endif()
unset( _ndk_ccache )
# specify the cross compiler
if( NDK_CCACHE )