From ab21f339a33abb1144f3c0f5c4285324e7e88392 Mon Sep 17 00:00:00 2001 From: Kacper Fiedorowicz Date: Fri, 26 Dec 2025 17:26:40 +0100 Subject: Add missing deinit Kbuild --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index b3aed7d6..4da86ea9 100644 --- a/makefile +++ b/makefile @@ -43,7 +43,7 @@ KCONFIG_CONFIG ?= .config -include ${KCONFIG_CONFIG} -ifneq ($(CONFIG_LLVM),1) +ifneq ($(CONFIG_LLVM),y) ifneq ($(filter %/,$(LLVM)),) LLVM_PREFIX = $(LLVM) else ifneq ($(filter -%,$(LLVM)),) @@ -51,7 +51,7 @@ ifneq ($(CONFIG_LLVM),1) endif endif -ifeq ($(CONFIG_LLVM),1) +ifeq ($(CONFIG_LLVM),y) CC = $(LLVM_PREFIX)clang$(LLVM_SUFFIX) LD = $(LLVM_PREFIX)ld.lld$(LLVM_SUFFIX) AR = $(LLVM_PREFIX)llvm-ar$(LLVM_SUFFIX) -- cgit v1.2.3