From 2fe41885926f9f0d9364d3437f15e3f2a3d23aeb Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 27 Nov 2012 13:45:44 +0100 Subject: build: move remaining preprocessor flags into CPPFLAGS The flags retrieved from `pkg-config --cflags ...` are generally only preprocessor flags (mostly -I to point to the directories), since anything else would inconvenience downstream users. Signed-off-by: Jan Engelhardt --- output/sqlite3/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'output/sqlite3/Makefile.am') diff --git a/output/sqlite3/Makefile.am b/output/sqlite3/Makefile.am index dd148ec..62af267 100644 --- a/output/sqlite3/Makefile.am +++ b/output/sqlite3/Makefile.am @@ -1,5 +1,5 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -AM_CFLAGS = ${regular_CFLAGS} ${libsqlite3_CFLAGS} +AM_CPPFLAGS = -I$(top_srcdir)/include ${libsqlite3_CFLAGS} +AM_CFLAGS = ${regular_CFLAGS} if HAVE_SQLITE3 -- cgit v1.2.3