diff options
author | Thomas Haller <thaller@redhat.com> | 2021-02-09 17:17:54 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2021-02-10 08:27:06 +0100 |
commit | 5e6d6c0764ede63fcb3d89d5dfcf49829fdd3043 (patch) | |
tree | 1a3173212650d32090384de31c2e5f7913105c43 /meson.build | |
parent | b9756df2c6fef106a439bcc801482de4f3cdf0d3 (diff) | |
download | NetworkManager-5e6d6c0764ede63fcb3d89d5dfcf49829fdd3043.tar.gz |
build/meson: include subdir "libnm" before "src/core"
No big change, but eventually I' like to move all source
directories under src/. That must be done one after the other,
so the first step is to move libnm-core/ into src/. If libnm
gets loaded in between, that causes odd ordering.
"src/core" should not depend on "libnm" and vice versa, so this
should have little effect for now.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 6f1ab6282f..c3551e9c74 100644 --- a/meson.build +++ b/meson.build @@ -909,8 +909,8 @@ content_files = [] subdir('introspection') subdir('shared') subdir('libnm-core') -subdir('libnm') subdir('src/core') +subdir('libnm') subdir('dispatcher') subdir('clients') subdir('data') |