]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: use full argument names for bpftool gen commands
authorJames Hilliard <james.hilliard1@gmail.com>
Tue, 1 Feb 2022 01:20:53 +0000 (18:20 -0700)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 1 Feb 2022 03:26:30 +0000 (12:26 +0900)
This should be a purely cosmetic change.

src/core/bpf/meson.build

index 57a4c5393c90737bbb7888473f1dde789db4e050..849f092fcf606e8e8eac569b626f591716b1e869 100644 (file)
@@ -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@'
 ]