File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/snap-stage3/src/librustc/driver Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 40fb87d40f681f5356af42175fc7b85da387f037
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 5cd4862c69fe6c27010c792aef6cfa053e56c137
4
+ refs/heads/snap-stage3: ad777778d4074a48dbd9fcbcbf6eecce7344db1a
5
5
refs/heads/try: f58aad6dce273570fb130b4df008ef9acd5a5be2
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
Original file line number Diff line number Diff line change @@ -568,8 +568,8 @@ pub fn phase_6_link_output(sess: &Session,
568
568
trans : & CrateTranslation ,
569
569
outputs : & OutputFilenames ) {
570
570
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 ( ) ) ;
573
573
os:: setenv ( "PATH" , os:: join_paths ( new_path. as_slice ( ) ) . unwrap ( ) ) ;
574
574
575
575
time ( sess. time_passes ( ) , "linking" , ( ) , |_|
You can’t perform that action at this time.
0 commit comments