From e9624c254d93bf54a0701a71ca73f34a9977464f Mon Sep 17 00:00:00 2001 From: Soapux <2375-Soapux@users.noreply.gitlab.freedesktop.org> Date: Thu, 13 Dec 2018 13:49:14 -0600 Subject: [PATCH] meson: correct libaudit not found message libaudit support is disabled with 'no' instead of 'false' https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/63 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 479ece4a0..1b3d27ef0 100644 --- a/meson.build +++ b/meson.build @@ -441,7 +441,7 @@ libaudit = get_option('libaudit') enable_libaudit = libaudit.contains('yes') if enable_libaudit libaudit_dep = dependency('audit', required: false) - assert(libaudit_dep.found(), 'You must have libaudit installed to build. Use -Dlibaudit=false to disable it') + assert(libaudit_dep.found(), 'You must have libaudit installed to build. Use -Dlibaudit=no to disable it') endif config_default_logging_audit = (libaudit == 'yes').to_string() config_h.set_quoted('NM_CONFIG_DEFAULT_LOGGING_AUDIT', config_default_logging_audit)