Fix compilation when CC is already set. Unset it at the start of the compilation, since we do not set it to android NDK compiler but we test its value in various place, which can broke the compilation (MSSilk + clang for instance). Hence having $CC="" should be the safest way of handling it.

This commit is contained in:
Gautier Pelloux-Prayer 2014-09-18 15:53:49 +02:00
parent 6ebb448503
commit af81f28875

View file

@ -29,6 +29,7 @@ SQLITE_VERSION=3071700
SQLITE_BASENAME=sqlite-amalgamation-$(SQLITE_VERSION)
SQLITE_URL=http://www.sqlite.org/2013/$(SQLITE_BASENAME).zip
ENABLE_GPL_THIRD_PARTIES=1
CC=
#default options, can be overidden using make OPTION=value .