From: James Hilliard Date: Tue, 1 Feb 2022 01:20:53 +0000 (-0700) Subject: meson: use full argument names for bpftool gen commands X-Git-Tag: v251-rc1~398 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04660b10d3104bca6dfe1a7b44871ea8fd09da56;p=thirdparty%2Fsystemd.git meson: use full argument names for bpftool gen commands This should be a purely cosmetic change. --- diff --git a/src/core/bpf/meson.build b/src/core/bpf/meson.build index 57a4c5393c9..849f092fcf6 100644 --- a/src/core/bpf/meson.build +++ b/src/core/bpf/meson.build @@ -68,8 +68,8 @@ bpf_o_unstripped_cmd += [ if bpftool_strip bpf_o_cmd = [ bpftool, - 'g', - 'o', + 'gen', + 'object', '@OUTPUT@', '@INPUT@' ] @@ -85,7 +85,7 @@ endif skel_h_cmd = [ bpftool, - 'g', - 's', + 'gen', + 'skeleton', '@INPUT@' ]