summaryrefslogtreecommitdiff
path: root/toolchains/CC/gcc.TARGETS
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2024-04-04 11:52:05 +0200
committerOliver Reiche <oliver.reiche@huawei.com>2024-04-04 12:02:20 +0200
commit231b991edcf3853486e613c8c6fad0981a4af272 (patch)
treebc54246f191da4f07bd81d631e380b272fb5597c /toolchains/CC/gcc.TARGETS
parent1dd86efdebb18ebf099396f45b366677b66a5cfd (diff)
downloadbootstrappable-toolchain-231b991edcf3853486e613c8c6fad0981a4af272.tar.gz
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.
Diffstat (limited to 'toolchains/CC/gcc.TARGETS')
-rw-r--r--toolchains/CC/gcc.TARGETS2
1 files changed, 1 insertions, 1 deletions
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"]]}
}