From cc8bab7729a13e3887788640c46d91a115650545 Mon Sep 17 00:00:00 2001 From: Brian West Date: Wed, 26 Feb 2014 16:21:48 -0600 Subject: [PATCH] FS-6276 move our include first so that ours is used and not the system if its present --- libs/sqlite/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/sqlite/Makefile.in b/libs/sqlite/Makefile.in index 01ff7496a9..0080244ccc 100644 --- a/libs/sqlite/Makefile.in +++ b/libs/sqlite/Makefile.in @@ -26,7 +26,7 @@ BCC = @BUILD_CC@ @BUILD_CFLAGS@ # will run on the target platform. (BCC and TCC are usually the # same unless your are cross-compiling.) # -TCC = @TARGET_CC@ @TARGET_CFLAGS@ -I. -I${TOP}/src +TCC = @TARGET_CC@ -I. -I${TOP}/src @TARGET_CFLAGS@ # Define -DNDEBUG to compile without debugging (i.e., for production usage) # Omitting the define will cause extra debugging code to be inserted and