Skip to content

Commit d854915

Browse files
committed
More test fixes and rebase conflicts
1 parent 5be9027 commit d854915

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/bootstrap/config.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -469,12 +469,11 @@ impl Config {
469469
match key {
470470
"CFG_BUILD" if value.len() > 0 => self.build = value.to_string(),
471471
"CFG_HOST" if value.len() > 0 => {
472-
self.host = value.split(" ").map(|s| s.to_string())
473-
.collect();
472+
self.host.extend(value.split(" ").map(|s| s.to_string()));
473+
474474
}
475475
"CFG_TARGET" if value.len() > 0 => {
476-
self.target = value.split(" ").map(|s| s.to_string())
477-
.collect();
476+
self.target.extend(value.split(" ").map(|s| s.to_string()));
478477
}
479478
"CFG_MUSL_ROOT" if value.len() > 0 => {
480479
self.musl_root = Some(parse_configure_path(value));

0 commit comments

Comments
 (0)