summaryrefslogtreecommitdiff
path: root/src/ppp
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-11-21 00:43:52 +0100
committerThomas Haller <thaller@redhat.com>2016-11-21 14:26:37 +0100
commit44ecb41593bc627d8f4529e74de4a549cf24a695 (patch)
treedbaecdedb38a3a533a0a05a19fcc208dfb2b3b7a /src/ppp
parenta65762ca332ee9ba5b80e66c901e5e82bc90f135 (diff)
downloadNetworkManager-44ecb41593bc627d8f4529e74de4a549cf24a695.tar.gz
build: don't add subdirectories to include search path but require qualified include
Keep the include paths clean and separate. We use directories to group source files together. That makes sense (I guess), but then we should use this grouping also when including files. Thus require to #include files with their path relative to "src/". Also, we build various artifacts from the "src/" tree. Instead of having individual CFLAGS for each artifact in Makefile.am, the CFLAGS should be unified. Previously, the CFLAGS for each artifact differ and are inconsistent in which paths they add to the search path. Fix the inconsistency by just don't add the paths at all.
Diffstat (limited to 'src/ppp')
-rw-r--r--src/ppp/nm-ppp-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ppp/nm-ppp-manager.c b/src/ppp/nm-ppp-manager.c
index 9b212a1acb..793209c601 100644
--- a/src/ppp/nm-ppp-manager.c
+++ b/src/ppp/nm-ppp-manager.c
@@ -44,7 +44,7 @@
#include <linux/if_ppp.h>
#include "NetworkManagerUtils.h"
-#include "nm-platform.h"
+#include "platform/nm-platform.h"
#include "nm-core-internal.h"
#include "nm-act-request.h"
#include "nm-ip4-config.h"