[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240912171646.1523528-1-kris.van.hees@oracle.com>
Date: Thu, 12 Sep 2024 13:16:44 -0400
From: Kris Van Hees <kris.van.hees@...cle.com>
To: Masahiro Yamada <masahiroy@...nel.org>
Cc: Kris Van Hees <kris.van.hees@...cle.com>,
Stephen Rothwell <sfr@...b.auug.org.au>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Linux Next Mailing List <linux-next@...r.kernel.org>
Subject: [PATCH] kbuild: invoke generate_builtin_ranges.awk using gawk explicitly
The gawk utility might be installed in different locations depending
on the distributions, etc. That means that the locations in the
shebang at the beginning of the generate_builtin_ranges.awk script
may not be correct, causing an error.
Use "gawk -f <script> <args>" instead from the Makefile.vmlinux, so
the $PATH will be used to locate gawk appropriately.
Signed-off-by: Kris Van Hees <kris.van.hees@...cle.com>
---
scripts/Makefile.vmlinux | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/Makefile.vmlinux b/scripts/Makefile.vmlinux
index dfb408aa19c6..1284f05555b9 100644
--- a/scripts/Makefile.vmlinux
+++ b/scripts/Makefile.vmlinux
@@ -39,7 +39,7 @@ ifdef CONFIG_BUILTIN_MODULE_RANGES
__default: modules.builtin.ranges
quiet_cmd_modules_builtin_ranges = GEN $@
- cmd_modules_builtin_ranges = $(real-prereqs) > $@
+ cmd_modules_builtin_ranges = gawk -f $(real-prereqs) > $@
targets += modules.builtin.ranges
modules.builtin.ranges: $(srctree)/scripts/generate_builtin_ranges.awk \
--
2.45.2
Powered by blists - more mailing lists