Skip to content

Commit 02b22ec

Browse files
committedDec 28, 2016
Auto merge of #38639 - xen0n:nightly-dist-hotfix, r=brson
rustbuild: Hotfix to unbreak nightly Fixes an oversight unnoticed in #38468 that eventually broke nightly packaging. I didn't realize this until some moments ago, when I finally found out the failure is actually deterministic. Many apologies for eating 3 nightlies during the holidays. r? @alexcrichton
2 parents 371f4d6 + cf89453 commit 02b22ec

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed
 

‎src/bootstrap/step.rs

+13-6
Original file line numberDiff line numberDiff line change
@@ -838,14 +838,21 @@ invalid rule dependency graph detected, was a rule added and maybe typo'd?
838838
} else {
839839
&self.build.config.target
840840
};
841-
// If --target was specified but --host wasn't specified, don't run
842-
// any host-only tests
841+
// Determine the actual targets participating in this rule.
842+
// NOTE: We should keep the full projection from build triple to
843+
// the hosts for the dist steps, now that the hosts array above is
844+
// truncated to avoid duplication of work in that case. Therefore
845+
// the original non-shadowed hosts array is used below.
843846
let arr = if rule.host {
844-
if self.build.flags.target.len() > 0 &&
845-
self.build.flags.host.len() == 0 {
846-
&hosts[..0]
847+
// If --target was specified but --host wasn't specified,
848+
// don't run any host-only tests. Also, respect any `--host`
849+
// overrides as done for `hosts`.
850+
if self.build.flags.host.len() > 0 {
851+
&self.build.flags.host[..]
852+
} else if self.build.flags.target.len() > 0 {
853+
&[]
847854
} else {
848-
hosts
855+
&self.build.config.host[..]
849856
}
850857
} else {
851858
targets

0 commit comments

Comments
 (0)