Skip to content

Commit ec55328

Browse files
committed
fix: Merge branch 'master' into android
2 parents caafa3e + e13d606 commit ec55328

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ fn make_elfutils(compiler: &cc::Tool, src_dir: &path::Path) {
297297
// lock README such that if two crates are trying to compile
298298
// this at the same time (eg libbpf-rs libbpf-cargo)
299299
// they wont trample each other
300-
let file = std::fs::File::open(src_dir.join("elfutils/README")).unwrap();
300+
let file = open_lockable(&src_dir.join("elfutils/README")).unwrap();
301301
let _lock = fcntl::Flock::lock(file, fcntl::FlockArg::LockExclusive).unwrap();
302302

303303
let project_dir = src_dir.join("elfutils");

libbpf

Submodule libbpf updated 66 files

0 commit comments

Comments
 (0)