]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: fix pkg-config name of libaudit
authorChris Hofstaedtler <zeha@debian.org>
Sun, 18 Dec 2022 18:39:56 +0000 (18:39 +0000)
committerChris Hofstaedtler <zeha@debian.org>
Sun, 18 Dec 2022 22:40:48 +0000 (23:40 +0100)
Fedora and Debian seem to use "audit", not "libaudit".

Signed-off-by: Chris Hofstaedtler <zeha@debian.org>
meson.build

index ac385e8b25a73ad96e68e9889a7524f75cc4e829..365a149c34387c77bfcb099b830ddbdcba55ebd9 100644 (file)
@@ -374,7 +374,7 @@ lib_econf = dependency(
 conf.set('HAVE_LIBECONF', lib_econf.found() ? 1 : false)
 
 lib_audit = dependency(
-  'libaudit',
+  'audit',
   required : get_option('audit'))
 conf.set('HAVE_LIBAUDIT', lib_audit.found() ? 1 : false)