aports

Custom Alpine Linux aports

git clone git://git.lin.moe/aports.git

 1From 5ed3c540ea689ae4786d2953c4149359f55cac47 Mon Sep 17 00:00:00 2001
 2From: Natanael Copa <ncopa@alpinelinux.org>
 3Date: Tue, 28 Nov 2023 14:22:46 +0100
 4Subject: [PATCH 4/5] objtool: respect AWK setting
 5
 6AWK= is not passed on as an makefile argument so we need pass it as an env.
 7---
 8 tools/objtool/Makefile | 2 +-
 9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/tools/objtool/Makefile b/tools/objtool/Makefile
12index bf7f7f84ac62..531d6485df3d 100644
13--- a/tools/objtool/Makefile
14+++ b/tools/objtool/Makefile
15@@ -42,7 +42,7 @@ OBJTOOL_CFLAGS += $(if $(elfshdr),,-DLIBELF_USE_DEPRECATED)
16 # Always want host compilation.
17 HOST_OVERRIDES := CC="$(HOSTCC)" LD="$(HOSTLD)" AR="$(HOSTAR)"
18 
19-AWK = awk
20+AWK ?= awk
21 MKDIR = mkdir
22 
23 ifeq ($(V),1)
24-- 
252.47.1
26