diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-04-04 11:52:05 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-04-04 12:02:20 +0200 |
commit | 231b991edcf3853486e613c8c6fad0981a4af272 (patch) | |
tree | bc54246f191da4f07bd81d631e380b272fb5597c /toolchains/patch/busybox.TARGETS | |
parent | 1dd86efdebb18ebf099396f45b366677b66a5cfd (diff) | |
download | bootstrappable-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/patch/busybox.TARGETS')
-rw-r--r-- | toolchains/patch/busybox.TARGETS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchains/patch/busybox.TARGETS b/toolchains/patch/busybox.TARGETS index 5581cb7..e027085 100644 --- a/toolchains/patch/busybox.TARGETS +++ b/toolchains/patch/busybox.TARGETS @@ -2,7 +2,7 @@ { "type": ["@", "rules", "patch", "defaults"] , "PATCH": ["busybox/usr/bin/patch"] , "toolchain": ["staged-busybox"] - , "PATH": ["/bin"] + , "PATH": ["/bin", "/usr/bin"] } , "staged-busybox": {"type": "install", "dirs": [[["", "toolchain"], "busybox"]]} |