From bac6ffe41f5d1221ecacba49947094b0571fb44c Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 16 Oct 2012 20:08:37 +0100 Subject: [PATCH] vars.am: Fix include path tweaking. Organization: Straylight/Edgeware From: Mark Wooding For some reason, the include directories were set in CPPFLAGS rather than AM_CPPFLAGS, which is just a mistake. Also, astonishingly, the makefile botched adding $(top_builddir)/config to the include path. This obviously never worked. Fortunately, Automake magically included the correct path by itself, so just remove the embarrassing mistake and pretend it never happened. --- vars.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vars.am b/vars.am index 5a9938d6..251a2058 100644 --- a/vars.am +++ b/vars.am @@ -38,11 +38,10 @@ SUFFIXES = ### Include path. TRIPE_INCLUDES = \ - -I$(top_builddir)/config.h \ -I$(top_srcdir)/common \ -I$(top_srcdir)/priv -CPPFLAGS += $(TRIPE_INCLUDES) +AM_CPPFLAGS += $(TRIPE_INCLUDES) ###-------------------------------------------------------------------------- ### Miscellanous useful definitions. -- [mdw]