about summary refs log tree commit diff
path: root/src/librustpkg
diff options
context:
space:
mode:
authorjmgrosen <jmgrosen@gmail.com>2013-09-03 16:11:00 -0700
committerjmgrosen <jmgrosen@gmail.com>2013-09-03 16:11:00 -0700
commit4a18d46130e13aad28fc072dafdd7e7b4baa8736 (patch)
tree55bf5d196fff7b938cfb7aa16374a897f8a3b653 /src/librustpkg
parentfc9fa2cb6ca2b0979137134713fe3f693090a9d9 (diff)
Fixes #8881. condition! imports parent's pub identifiers
Diffstat (limited to 'src/librustpkg')
-rw-r--r--src/librustpkg/conditions.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/librustpkg/conditions.rs b/src/librustpkg/conditions.rs
index 785c635e085..16ee9c1afb4 100644
--- a/src/librustpkg/conditions.rs
+++ b/src/librustpkg/conditions.rs
@@ -14,33 +14,33 @@ pub use std::path::Path;
 pub use package_id::PkgId;
 
 condition! {
-    bad_path: (super::Path, ~str) -> super::Path;
+    bad_path: (Path, ~str) -> Path;
 }
 
 condition! {
-    nonexistent_package: (super::PkgId, ~str) -> super::Path;
+    nonexistent_package: (PkgId, ~str) -> Path;
 }
 
 condition! {
-    copy_failed: (super::Path, super::Path) -> ();
+    copy_failed: (Path, Path) -> ();
 }
 
 condition! {
-    missing_pkg_files: (super::PkgId) -> ();
+    missing_pkg_files: (PkgId) -> ();
 }
 
 condition! {
-    bad_pkg_id: (super::Path, ~str) -> super::PkgId;
+    bad_pkg_id: (Path, ~str) -> PkgId;
 }
 
 condition! {
-    no_rust_path: (~str) -> super::Path;
+    no_rust_path: (~str) -> Path;
 }
 
 condition! {
-    not_a_workspace: (~str) -> super::Path;
+    not_a_workspace: (~str) -> Path;
 }
 
 condition! {
-    failed_to_create_temp_dir: (~str) -> super::Path;
+    failed_to_create_temp_dir: (~str) -> Path;
 }