From: Brian West Date: Wed, 26 Feb 2014 22:21:48 +0000 (-0600) Subject: FS-6276 move our include first so that ours is used and not the system if its present X-Git-Tag: v1.2.23~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2ce0485f4a33f791600e3ddfb57b0e83807a48f;p=thirdparty%2Ffreeswitch.git FS-6276 move our include first so that ours is used and not the system if its present --- 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