From 231b991edcf3853486e613c8c6fad0981a4af272 Mon Sep 17 00:00:00 2001 From: Oliver Reiche Date: Thu, 4 Apr 2024 11:52:05 +0200 Subject: Fix PATH of top-level toolchains ... which not only requires "/bin" (for "sh") but also "/usr/bin" for coreutils ("dirname", "realpath", "chmod", etc.), which are needed for compiler wrappers and the patch runner script. --- toolchains/CC/gcc.TARGETS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolchains/CC/gcc.TARGETS') diff --git a/toolchains/CC/gcc.TARGETS b/toolchains/CC/gcc.TARGETS index c0b6fbe..9f0fbc0 100644 --- a/toolchains/CC/gcc.TARGETS +++ b/toolchains/CC/gcc.TARGETS @@ -32,7 +32,7 @@ , "else": [["@", "gcc", "", "runlibs"]] } , "toolchain": ["staged-gcc"] - , "PATH": ["$(TOOLCHAIN)/gcc/bin", "/bin"] + , "PATH": ["$(TOOLCHAIN)/gcc/bin", "/bin", "/usr/bin"] } , "staged-gcc": {"type": "install", "dirs": [[["", "toolchain"], "gcc"]]} } -- cgit v1.2.3