summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2012-11-27 13:45:44 +0100
committerJan Engelhardt <jengelh@inai.de>2012-11-27 13:45:44 +0100
commit2fe41885926f9f0d9364d3437f15e3f2a3d23aeb (patch)
tree6b23c199ecb636b716efedac54fdadfb72303ed9 /filter
parent96d19632dacf3bacb3874a6681f442fcc33086e7 (diff)
build: move remaining preprocessor flags into CPPFLAGS
The flags retrieved from `pkg-config --cflags ...` are generally only preprocessor flags (mostly -I to point to the directories), since anything else would inconvenience downstream users. Signed-off-by: Jan Engelhardt <jengelh@inai.de>
Diffstat (limited to 'filter')
-rw-r--r--filter/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/Makefile.am b/filter/Makefile.am
index 5af0696..875850b 100644
--- a/filter/Makefile.am
+++ b/filter/Makefile.am
@@ -1,7 +1,7 @@
SUBDIRS = raw2packet packet2flow
-AM_CPPFLAGS = -I$(top_srcdir)/include
-AM_CFLAGS = ${regular_CFLAGS} ${LIBNFNETLINK_CFLAGS}
+AM_CPPFLAGS = -I$(top_srcdir)/include ${LIBNFNETLINK_CFLAGS}
+AM_CFLAGS = ${regular_CFLAGS}
pkglib_LTLIBRARIES = ulogd_filter_IFINDEX.la ulogd_filter_PWSNIFF.la \
ulogd_filter_PRINTPKT.la ulogd_filter_PRINTFLOW.la \