From: Remi Gacogne Date: Fri, 7 Mar 2025 10:17:22 +0000 (+0100) Subject: dnsdist: Fix a typo in the meson `xsk` file X-Git-Tag: dnsdist-2.0.0-alpha1~30^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9274c73e141128b34de01d17bfcf4b172f050999;p=thirdparty%2Fpdns.git dnsdist: Fix a typo in the meson `xsk` file --- diff --git a/pdns/dnsdistdist/meson/xsk/meson.build b/pdns/dnsdistdist/meson/xsk/meson.build index 95f2c0beef..40ffe81137 100644 --- a/pdns/dnsdistdist/meson/xsk/meson.build +++ b/pdns/dnsdistdist/meson/xsk/meson.build @@ -8,6 +8,6 @@ if opt_xsk.allowed() conf.set('HAVE_XSK', dep_libbpf.found() and dep_libxdp.found(), description: 'AF_XDP (XSK) support enabled') summary('AF_XDP (XSK)', dep_libbpf.found() and dep_libxdp.found(), bool_yn: true, section: 'XSK') else - dep_libpf = declare_dependency() + dep_libbpf = declare_dependency() dep_libxdp = declare_dependency() endif