2013-05-27 19:45:16 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-08-23 13:51:45 -05:00
|
|
|
use path_util::{installed_library_in_workspace, rust_path};
|
|
|
|
use version::Version;
|
2013-05-27 19:45:16 -05:00
|
|
|
|
2013-08-23 13:51:45 -05:00
|
|
|
/// If some workspace `p` in the RUST_PATH contains a package matching short_name,
|
|
|
|
/// return Some(p) (returns the first one of there are multiple matches.) Return
|
|
|
|
/// None if there's no such path.
|
|
|
|
/// FIXME #8711: This ignores the desired version.
|
2013-09-12 15:56:11 -05:00
|
|
|
pub fn find_installed_library_in_rust_path(pkg_path: &Path, _version: &Version) -> Option<Path> {
|
2013-08-23 13:51:45 -05:00
|
|
|
let rp = rust_path();
|
2013-09-12 15:56:11 -05:00
|
|
|
debug!("find_installed_library_in_rust_path: looking for path %s", pkg_path.to_str());
|
2013-08-23 13:51:45 -05:00
|
|
|
for p in rp.iter() {
|
2013-09-12 15:56:11 -05:00
|
|
|
match installed_library_in_workspace(pkg_path, p) {
|
2013-08-23 13:51:45 -05:00
|
|
|
Some(path) => return Some(path),
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|