From 52c37177cc6b7e84ba2c36d40d4b0f012c9117c9 Mon Sep 17 00:00:00 2001 From: Yonghong Song Date: Wed, 24 Apr 2024 10:57:34 -0700 Subject: [PATCH] Makefile: Ensure github libbpf version the same as the kernel one The kernel libbpf version is 1.5 now. So change github libbpf version to be 1.5 as well. Signed-off-by: Yonghong Song --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index fc75bb6..53113da 100644 --- a/src/Makefile +++ b/src/Makefile @@ -9,7 +9,7 @@ else endif LIBBPF_MAJOR_VERSION := 1 -LIBBPF_MINOR_VERSION := 4 +LIBBPF_MINOR_VERSION := 5 LIBBPF_PATCH_VERSION := 0 LIBBPF_VERSION := $(LIBBPF_MAJOR_VERSION).$(LIBBPF_MINOR_VERSION).$(LIBBPF_PATCH_VERSION) LIBBPF_MAJMIN_VERSION := $(LIBBPF_MAJOR_VERSION).$(LIBBPF_MINOR_VERSION).0