diff options
author | Thomas Haller <thaller@redhat.com> | 2016-11-21 00:43:52 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-11-21 14:26:37 +0100 |
commit | 44ecb41593bc627d8f4529e74de4a549cf24a695 (patch) | |
tree | dbaecdedb38a3a533a0a05a19fcc208dfb2b3b7a /src/NetworkManagerUtils.c | |
parent | a65762ca332ee9ba5b80e66c901e5e82bc90f135 (diff) | |
download | NetworkManager-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/NetworkManagerUtils.c')
-rw-r--r-- | src/NetworkManagerUtils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NetworkManagerUtils.c b/src/NetworkManagerUtils.c index ad90fb7118..55b660db83 100644 --- a/src/NetworkManagerUtils.c +++ b/src/NetworkManagerUtils.c @@ -30,7 +30,7 @@ #include "nm-setting-ip6-config.h" #include "nm-core-internal.h" -#include "nm-platform.h" +#include "platform/nm-platform.h" #include "nm-exported-object.h" #include "nm-auth-utils.h" |