From f197d009796106fcba3c0bccf97bd704ec7d9604 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Fri, 6 Jul 2012 09:35:43 -0700 Subject: [PATCH] cargo: Fix building dependencies --- src/cargo/cargo.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cargo/cargo.rs b/src/cargo/cargo.rs index 5116d75f6f59..efed7db81cf5 100644 --- a/src/cargo/cargo.rs +++ b/src/cargo/cargo.rs @@ -751,7 +751,7 @@ fn install_one_crate(c: cargo, path: str, cf: str) { #debug(" lib: %s", ct); install_to_dir(ct, c.libdir); } - } + } } @@ -799,6 +799,7 @@ fn install_source(c: cargo, path: str) { }; install_query(c, wd, query); + } os::change_dir(path); @@ -809,7 +810,6 @@ fn install_source(c: cargo, path: str) { } } } - } } fn install_git(c: cargo, wd: str, url: str, ref: option) {