diff options
| author | bors <bors@rust-lang.org> | 2013-10-28 13:51:39 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-28 13:51:39 -0700 |
| commit | cd6e9f4f834f849a3dafd7cf0786f3c97bc3bb37 (patch) | |
| tree | e9106875f04f7d83b76acf09e8ff385a196963a9 /src/librustpkg/rustpkg.rs | |
| parent | 2ab4a6fab046769ddad48de557f64b0a97f86ce3 (diff) | |
| parent | 0e6a575635862deba5c280d38b32bb43093980c0 (diff) | |
| download | rust-cd6e9f4f834f849a3dafd7cf0786f3c97bc3bb37.tar.gz rust-cd6e9f4f834f849a3dafd7cf0786f3c97bc3bb37.zip | |
auto merge of #10110 : catamorphism/rust/rustpkg-dependency-build-dir, r=metajack
r? @metajack When invoked with the --rust-path-hack flag, rustpkg was correctly building the package into the default workspace (and not into the build/ subdirectory of the parent directory of the source directory), but not correctly putting the output for any dependencies into the default workspace as well. Spotted by Jack.
Diffstat (limited to 'src/librustpkg/rustpkg.rs')
| -rw-r--r-- | src/librustpkg/rustpkg.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/librustpkg/rustpkg.rs b/src/librustpkg/rustpkg.rs index 1711dc99235..517d43432ec 100644 --- a/src/librustpkg/rustpkg.rs +++ b/src/librustpkg/rustpkg.rs @@ -587,8 +587,6 @@ impl CtxMethods for BuildContext { build_inputs, &pkg_src.destination_workspace, &id).map(|s| Path::new(s.as_slice())); - debug!("install: id = {}, about to call discover_outputs, {:?}", - id.to_str(), result.map(|p| p.display().to_str())); installed_files = installed_files + result; note(format!("Installed package {} to {}", id.to_str(), |
