mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-05 04:30:16 +01:00
meson: correct libaudit not found message
libaudit support is disabled with 'no' instead of 'false' https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/63
This commit is contained in:
parent
0819563e01
commit
e9624c254d
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue