Skip to content

Commit

Permalink
auto merge of #5704 : brson/rust/compiletest, r=luqmana
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Apr 4, 2013
2 parents 84c296b + 34b2336 commit 783392f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiletest/procsrv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fn target_env(lib_path: ~str, prog: ~str) -> ~[(~str,~str)] {

// Make sure we include the aux directory in the path
assert!(prog.ends_with(~".exe"));
let aux_path = prog.slice(0u, prog.len() - 4u) + ~".libaux";
let aux_path = prog.slice(0u, prog.len() - 4u).to_owned() + ~".libaux";

env = do vec::map(env) |pair| {
let (k,v) = *pair;
Expand Down

0 comments on commit 783392f

Please sign in to comment.