diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-09-26 14:48:58 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-09-27 12:24:02 +0200 |
commit | bbf9c52ada2d028bf32b047b67a31c9331a6cf53 (patch) | |
tree | 85b3f51d96e1d71542a2c0e4e22f86cad0f91804 | |
parent | 1bb926aaabc4d948940b8436d0050e6820a4f213 (diff) | |
download | bootstrappable-toolchain-bbf9c52ada2d028bf32b047b67a31c9331a6cf53.tar.gz |
["CC/foreign", "defaults"] of stage-1: drop busybox
... as that is brought in by the shell toolchain anyway. In that
way, we can also drop setting "PATH" and hence get rid of the
assumption that variable-expansion happens in "PATH" strings.
-rw-r--r-- | etc/defaults/CC/foreign/stage-1.TARGETS | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/etc/defaults/CC/foreign/stage-1.TARGETS b/etc/defaults/CC/foreign/stage-1.TARGETS index b1219fe..242e44e 100644 --- a/etc/defaults/CC/foreign/stage-1.TARGETS +++ b/etc/defaults/CC/foreign/stage-1.TARGETS @@ -1,17 +1,10 @@ { "defaults": { "type": ["CC/foreign", "defaults"] , "MAKE": ["make/bin/make"] - , "toolchain": ["staged-make", "staged-busybox"] - , "PATH": - [ "$(TOOLCHAIN)/make/bin" - , "$(TOOLCHAIN)/busybox/bin" - , "$(TOOLCHAIN)/busybox/usr/bin" - ] + , "toolchain": ["staged-make"] } , "staged-make": {"type": "install", "dirs": [[["@", "make", "", "toolchain"], "make"]]} -, "staged-busybox": - {"type": "install", "dirs": [[["@", "busybox", "", "toolchain"], "busybox"]]} , "expand_exec": { "type": "configure" , "target": ["@", "stage-0", "CC/foreign", "expand_exec"] |