From 53b8c0a346f6a42e0f261efcef5842f50014c08b Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Wed, 25 Jun 2014 11:56:03 +0200 Subject: [PATCH] notifications: Use AM_CPPFLAGS rather than INCLUDES This is deprecated in newer automake versions, and this causes warnings with automake 1.14: panels/printers/Makefile.am:3: warning: 'INCLUDES' is the old name for AM_CPPFLAGS' (or '*_CPPFLAGS') https://bugzilla.gnome.org/show_bug.cgi?id=732189 --- panels/notifications/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/notifications/Makefile.am b/panels/notifications/Makefile.am index e51272e81..03fc75579 100644 --- a/panels/notifications/Makefile.am +++ b/panels/notifications/Makefile.am @@ -1,6 +1,6 @@ cappletname = notifications -INCLUDES = \ +AM_CPPFLAGS = \ $(PANEL_CFLAGS) \ $(NOTIFICATIONS_PANEL_CFLAGS) \ -DGNOMELOCALEDIR="\"$(datadir)/locale\"" \