From a9644c1f8bf28b7c27edca1d8c85275ae6f89509 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 12 Jan 2015 22:46:01 +0000 Subject: [PATCH] We do not need to add /usr/local to CPPFLAGS; if configure managed to pass then the dependencies must already be in the search path. Reported by Romain Naour. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 82469e4f..071c3a17 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,12 +36,12 @@ CFLAGS += -Wdeclaration-after-statement CPPFLAGS += -DDEBUG endif if IS_GCC4 -CPPFLAGS += -iquote. -I/usr/local/include +CPPFLAGS += -iquote. if IS_DEBUG CFLAGS += -Wno-pointer-sign endif else -CPPFLAGS += -I. -I- -I/usr/local/include +CPPFLAGS += -I. -I- endif endif