From 5428278ed9a22835dbd30d5ff6f36899da5f85ce Mon Sep 17 00:00:00 2001 From: Ariel Otilibili Date: Fri, 13 Sep 2024 19:24:04 +0200 Subject: [PATCH] ebpf_prog/Makefile: removed useless `LLVM_STRIP` `LLVM_STRIP` appears only once in Makefile: ``` $ grep LLVM Makefile LLVM_STRIP ?= llvm-strip -g ``` Signed-off-by: Ariel Otilibili --- ebpf_prog/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/ebpf_prog/Makefile b/ebpf_prog/Makefile index 180db955df..0e930de372 100644 --- a/ebpf_prog/Makefile +++ b/ebpf_prog/Makefile @@ -7,7 +7,6 @@ KERNEL_DIR ?= /lib/modules/$(shell uname -r)/source KERNEL_HEADERS ?= /usr/src/linux-headers-$(shell uname -r)/ CC = clang LLC ?= llc -LLVM_STRIP ?= llvm-strip -g ARCH ?= $(shell uname -m) # as in /usr/src/linux-headers-*/arch/