Skip to content

Commit addbb7e

Browse files
committed
replace current_opt with membership check
1 parent 7ec9f8d commit addbb7e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/cargo/ops/cargo_rustc/context.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
449449
// we don't want to link it up.
450450
if src_dir.ends_with("deps") {
451451
// Don't lift up library dependencies
452-
if self.ws.current_opt().map_or(false, |p| unit.pkg.package_id() != p.package_id())
453-
&& !unit.target.is_bin() {
452+
if self.ws.members().find(|&p| p != unit.pkg).is_some() && !unit.target.is_bin() {
454453
None
455454
} else {
456455
Some((

src/cargo/ops/cargo_rustc/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -557,9 +557,7 @@ fn build_base_args(cx: &mut Context,
557557
let prefer_dynamic = (unit.target.for_host() &&
558558
!unit.target.is_custom_build()) ||
559559
(crate_types.contains(&"dylib") &&
560-
cx.ws.current_opt().map_or(false, |p| {
561-
*p.package_id() != *unit.pkg.package_id()
562-
}));
560+
cx.ws.members().find(|&p| p != unit.pkg).is_some());
563561
if prefer_dynamic {
564562
cmd.arg("-C").arg("prefer-dynamic");
565563
}

0 commit comments

Comments
 (0)