about summary refs log tree commit diff
path: root/src/librustpkg
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-05-12 17:48:01 -0400
committerAlex Crichton <alex@alexcrichton.com>2013-05-12 17:48:01 -0400
commit2a9a4a81e15fbd8146ce8fe5842c46ad615cbcf6 (patch)
tree51ce75d9fba579db70eafced3b0aa8e4a33a4ea6 /src/librustpkg
parent7dc94b87686ffd78a71442304158eb91d43885b0 (diff)
downloadrust-2a9a4a81e15fbd8146ce8fe5842c46ad615cbcf6.tar.gz
rust-2a9a4a81e15fbd8146ce8fe5842c46ad615cbcf6.zip
Don't create subprocesses for the `rust` command
Instead link against the built libraries and directly invoke those.
Diffstat (limited to 'src/librustpkg')
-rw-r--r--src/librustpkg/rustpkg.rc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustpkg/rustpkg.rc b/src/librustpkg/rustpkg.rc
index dd5806ba015..502f34a4d9e 100644
--- a/src/librustpkg/rustpkg.rc
+++ b/src/librustpkg/rustpkg.rc
@@ -42,12 +42,13 @@ use context::Ctx;
 
 mod conditions;
 mod context;
-mod usage;
 mod path_util;
 mod tests;
 mod util;
 mod workspace;
 
+pub mod usage;
+
 /// A PkgScript represents user-supplied custom logic for
 /// special build hooks. This only exists for packages with
 /// an explicit package script.