From abe2e423118d0a6839662c655091ed0d5afd6f34 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 23 Jul 2013 19:34:03 -0400 Subject: [PATCH] Fix automake warning about deprecated INCLUDES Warning was: src/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') --- src/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 7ec3214..adab715 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,8 @@ # This file is processed by GNU automake to generate Makefile.in -INCLUDES = -I$(top_srcdir) \ - -I$(top_srcdir)/pixmaps \ - $(GTK_CFLAGS) +AM_CPPFLAGS = -I$(top_srcdir) \ + -I$(top_srcdir)/pixmaps \ + $(GTK_CFLAGS) bin_PROGRAMS = dockbatmon -- 2.20.1