From bf654c175360bd4d4b717f7b9b20dfe3c8e5a3aa Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Tue, 23 Jun 2020 18:13:24 +0100 Subject: [PATCH] Fix path to minijail-sys. This was broken by https://android-review.googlesource.com/c/platform/external/minijail/+/1341614 BUG=chromium:1096175 TEST=cargo test Change-Id: I5e991a199166ecbe5add10484ac16bcaf13fe6ee Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2260596 Reviewed-by: Dylan Reid Reviewed-by: Stephen Barber Reviewed-by: Allen Webb Reviewed-by: Daniel Verkamp Tested-by: Dylan Reid Commit-Queue: Andrew Walbran --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8b83008f4f..841bf09c92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ audio_streams = { path = "../../third_party/adhd/audio_streams" } # ignored by e data_model = { path = "data_model" } libcras = { path = "../../third_party/adhd/cras/client/libcras" } # ignored by ebuild libvda = { path = "../../platform2/arc/vm/libvda/rust" } # ignored by ebuild -minijail-sys = { path = "../../aosp/external/minijail" } # ignored by ebuild +minijail-sys = { path = "../../aosp/external/minijail/rust/minijail-sys" } # ignored by ebuild poll_token_derive = { path = "sys_util/poll_token_derive" } sync = { path = "sync" } sys_util = { path = "sys_util" }