From 684d0e5bb80d60e9425558de2e444d615f11b99d Mon Sep 17 00:00:00 2001
From: Guillem Jover <guillem@hadrons.org>
Date: Thu, 7 Mar 2013 17:07:16 +0100
Subject: [PATCH v2 09/18] build: Move preprocessor flags to AM_CPPFLAGS
Status: obsolete

---
 Makefile.am | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 4e8d542..53ce9ca 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -46,12 +46,13 @@ src_neard_LDFLAGS = -Wl,--export-dynamic
 
 nodist_src_neard_SOURCES = src/builtin.h
 
-AM_CFLAGS = @GLIB_CFLAGS@ @DBUS_CFLAGS@ @NETLINK_CFLAGS@ $(builtin_cflags) \
-					-DNEAR_PLUGIN_BUILTIN \
-					-DPLUGINDIR=\""$(plugindir)"\" \
-					-DCONFIGDIR=\""$(configdir)"\"
+AM_CFLAGS = @GLIB_CFLAGS@ @DBUS_CFLAGS@ @NETLINK_CFLAGS@ $(builtin_cflags)
 
-AM_CPPFLAGS = -I$(builddir)/include -I$(builddir)/src -I$(srcdir)/gdbus
+AM_CPPFLAGS = \
+	-DNEAR_PLUGIN_BUILTIN \
+	-DPLUGINDIR=\""$(plugindir)"\" \
+	-DCONFIGDIR=\""$(configdir)"\" \
+	-I$(builddir)/include -I$(builddir)/src -I$(srcdir)/gdbus
 
 CLEANFILES = src/builtin.h $(local_headers)
 
-- 
1.8.3.1

