summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-02-21 12:09:18 +0100
committerThomas Haller <thaller@redhat.com>2020-02-21 18:24:25 +0100
commit95891e78e77377707ecf6c868750c570f5ca7c3b (patch)
tree1b03e4341e1bbaa662761403df95ef268e7c1b34
parentec8068ec0c73a918d1c1f0455b373540eb1beb40 (diff)
downloadNetworkManager-95891e78e77377707ecf6c868750c570f5ca7c3b.tar.gz
build/meson: fix missing dependency when building nm-libnm-aux
[351/932] Compiling C object libnm/fdede0a@@nm-libnm-aux@sta/.._shared_nm-libnm-aux_nm-libnm-aux.c.o. FAILED: libnm/fdede0a@@nm-libnm-aux@sta/.._shared_nm-libnm-aux_nm-libnm-aux.c.o gcc -Ilibnm/fdede0a@@nm-libnm-aux@sta -Ilibnm -I../libnm -Ilibnm-core -I../libnm-core -I. -I../ -Ishared -I../shared -I/usr/include/gio-unix-2.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/uuid -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Werror -std=gnu11 -O2 -g -Wall -Wextra -Wdeclaration-after-statement -Wfloat-equal -Wformat-nonliteral -Wformat-security -Wimplicit-fallthrough -Wimplicit-function-declaration -Winit-self -Wlogical-op -Wmissing-declarations -Wmissing-include-dirs -Wmissing-prototypes -Wpointer-arith -Wshadow -Wshift-negative-value -Wstrict-prototypes -Wundef -Wvla -Wno-duplicate-decl-specifier -Wno-format-truncation -Wno-format-y2k -Wno-missing-field-initializers -Wno-pragmas -Wno-sign-compare -Wno-unknown-pragmas -Wno-unused-parameter -Wpointer-arith -Wshadow -Wstrict-prototypes -Wundef -fno-strict-aliasing -fPIC -pthread -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_40 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_40 -DG_LOG_DOMAIN=libnmc -DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT -MD -MQ libnm/fdede0a@@nm-libnm-aux@sta/.._shared_nm-libnm-aux_nm-libnm-aux.c.o -MF libnm/fdede0a@@nm-libnm-aux@sta/.._shared_nm-libnm-aux_nm-libnm-aux.c.o.d -o libnm/fdede0a@@nm-libnm-aux@sta/.._shared_nm-libnm-aux_nm-libnm-aux.c.o -c ../shared/nm-libnm-aux/nm-libnm-aux.c In file included from ../libnm-core/nm-connection.h:14, from ../libnm/nm-types.h:12, from ../libnm/nm-object.h:14, from ../libnm/nm-access-point.h:14, from ../libnm/NetworkManager.h:11, from ../shared/nm-default.h:288, from ../shared/nm-libnm-aux/nm-libnm-aux.c:3: ../libnm-core/nm-core-types.h:13:10: fatal error: nm-core-enum-types.h: No such file or directory 13 | #include "nm-core-enum-types.h" | ^~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
-rw-r--r--libnm/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/libnm/meson.build b/libnm/meson.build
index 29a21db76a..89794dc3c0 100644
--- a/libnm/meson.build
+++ b/libnm/meson.build
@@ -290,6 +290,7 @@ libnm_libnm_aux = static_library(
],
dependencies: [
libnm_core_nm_default_dep,
+ libnm_libnm_core_intern_dep,
libnm_dep,
],
)