From db980702146bf88c4cd1c4803799aaea2aaedbaa Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 6 Feb 2019 12:50:40 +0100 Subject: [PATCH] build/meson: add dependency of libnm to libnm-core We need to build libnm-core first. Especially, because libnm sources require the "libnm-core/nm-core-enum-types.h" header to be generated first. Add a missing dependency. --- libnm/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libnm/meson.build b/libnm/meson.build index e61e20f66e..558a587b4a 100644 --- a/libnm/meson.build +++ b/libnm/meson.build @@ -10,6 +10,7 @@ libnm_utils_sources = files('nm-libnm-utils.c') deps = [ libnmdbus_dep, shared_nm_utils_base_dep, + nm_core_dep, ] if have_fake_typelibs @@ -158,6 +159,7 @@ libnm = shared_library( dl_dep, libudev_dep, shared_nm_utils_base_dep, + nm_core_dep, uuid_dep, libnm_systemd_shared_no_logging_dep, ],