From dbb9999fead6a82d17afb494e587ce75573ac49f Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Tue, 7 Sep 2021 18:58:16 -0400 Subject: [PATCH] meson: fix building logger --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index cda4ce0c52..c1fdce8136 100644 --- a/meson.build +++ b/meson.build @@ -2245,6 +2245,7 @@ exe = executable( 'logger', logger_sources, include_directories : includes, + link_with : [lib_common], dependencies : [lib_systemd], install_dir : usrbin_exec_dir, install : opt, @@ -2259,6 +2260,7 @@ exe = executable( logger_sources, include_directories : includes, c_args : '-DTEST_LOGGER', + link_with : [lib_common], dependencies : [lib_systemd]) if not is_disabler(exe) exes += exe -- 2.47.2