Skip to content

Commit 1878225

Browse files
committed
---
yaml --- r: 159062 b: refs/heads/snap-stage3 c: ad77777 h: refs/heads/master v: v3
1 parent 70a0241 commit 1878225

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 40fb87d40f681f5356af42175fc7b85da387f037
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 5cd4862c69fe6c27010c792aef6cfa053e56c137
4+
refs/heads/snap-stage3: ad777778d4074a48dbd9fcbcbf6eecce7344db1a
55
refs/heads/try: f58aad6dce273570fb130b4df008ef9acd5a5be2
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/librustc/driver/driver.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,8 @@ pub fn phase_6_link_output(sess: &Session,
568568
trans: &CrateTranslation,
569569
outputs: &OutputFilenames) {
570570
let old_path = os::getenv("PATH").unwrap_or_else(||String::new());
571-
let mut new_path = os::split_paths(old_path.as_slice());
572-
new_path.extend(sess.host_filesearch().get_tools_search_paths().into_iter());
571+
let mut new_path = sess.host_filesearch().get_tools_search_paths();
572+
new_path.extend(os::split_paths(old_path.as_slice()).into_iter());
573573
os::setenv("PATH", os::join_paths(new_path.as_slice()).unwrap());
574574

575575
time(sess.time_passes(), "linking", (), |_|

0 commit comments

Comments
 (0)