From 98594bc6c8205aa11c1dbe00891940e32e209be5 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 18 Sep 2014 15:53:49 +0200 Subject: [PATCH] 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. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 926396478..5e46b1c5f 100644 --- a/Makefile +++ b/Makefile @@ -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 .