| Message ID | 20260320104527.2872785-1-skandigraun@gmail.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | [meta-oe] bpftool: add missing build dependency | expand |
diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb b/meta-oe/recipes-kernel/bpftool/bpftool.bb index 4f4d4a8670..66e48cfd84 100644 --- a/meta-oe/recipes-kernel/bpftool/bpftool.bb +++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb @@ -2,7 +2,7 @@ SUMMARY = "Inspect and manipulate eBPF programs and maps" DESCRIPTION = "bpftool is a kernel tool for inspection and simple manipulation \ of eBPF programs and maps." LICENSE = "GPL-2.0-only" -DEPENDS = "binutils elfutils elfutils-native" +DEPENDS = "binutils elfutils elfutils-native openssl" PROVIDES = "virtual/bpftool" inherit bash-completion kernelsrc kernel-arch
Add openssl as a dependency. Fixes compilation error: | sign.c:16:10: fatal error: openssl/opensslv.h: No such file or directory | 16 | #include <openssl/opensslv.h> Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> --- meta-oe/recipes-kernel/bpftool/bpftool.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)