From 4af1c336b984984e98bffc3c6d6c6bc540422228 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 2 Jun 2013 00:14:38 +0100 Subject: [PATCH] vars.am: Use `AM_CPPFLAGS' for the includes list. This frees up plain `CPPFLAGS' for users. --- vars.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vars.am b/vars.am index 3c65370..2450f28 100644 --- a/vars.am +++ b/vars.am @@ -45,7 +45,7 @@ MAINTAINERCLEANFILES = $(PRECOMPS) ###-------------------------------------------------------------------------- ### Include path. -MLIB_INCLUDES = \ +MLIB_INCLUDES = \ -I$(top_srcdir)/buf \ -I$(top_srcdir)/codec \ -I$(top_srcdir)/hash \ @@ -58,7 +58,7 @@ MLIB_INCLUDES = \ -I$(top_srcdir)/ui \ -I$(top_srcdir)/utils -CPPFLAGS += $(MLIB_INCLUDES) +AM_CPPFLAGS = $(MLIB_INCLUDES) ###-------------------------------------------------------------------------- ### Miscellaneous useful definitions. -- 2.11.0