From: Chris Hofstaedtler Date: Sun, 18 Dec 2022 18:39:56 +0000 (+0000) Subject: meson: fix pkg-config name of libaudit X-Git-Tag: v2.39-rc1~360^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2ae39f68206fe3b5dd150eb8e2ae7c1c1efec12;p=thirdparty%2Futil-linux.git meson: fix pkg-config name of libaudit Fedora and Debian seem to use "audit", not "libaudit". Signed-off-by: Chris Hofstaedtler --- diff --git a/meson.build b/meson.build index ac385e8b25..365a149c34 100644 --- a/meson.build +++ b/meson.build @@ -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)