From c2495832ced4239bcd376b9954db38a6addd89ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Fri, 3 Mar 2023 09:52:51 -0800 Subject: [PATCH] libbpf: Properly build zip.o MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sync script does not seem to be automatically adding newly added files added to the kernel repo build to the local Makefile. Do that now. Signed-off-by: Daniel Müller --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 314ab7d..eafe2f4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -52,7 +52,7 @@ STATIC_OBJDIR := $(OBJDIR)/staticobjs OBJS := bpf.o btf.o libbpf.o libbpf_errno.o netlink.o \ nlattr.o str_error.o libbpf_probes.o bpf_prog_linfo.o \ btf_dump.o hashmap.o ringbuf.o strset.o linker.o gen_loader.o \ - relo_core.o usdt.o + relo_core.o usdt.o zip.o SHARED_OBJS := $(addprefix $(SHARED_OBJDIR)/,$(OBJS)) STATIC_OBJS := $(addprefix $(STATIC_OBJDIR)/,$(OBJS))