Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/uu/stdbuf/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fn main() {
assert!(status.success(), "Failed to build libstdbuf");

// Copy the built library to OUT_DIR for include_bytes! to find
let lib_name = format!("liblibstdbuf{}", platform::DYLIB_EXT);
let lib_name = format!("libstdbuf{}", platform::DYLIB_EXT);
let dest_path = Path::new(&out_dir).join(format!("libstdbuf{}", platform::DYLIB_EXT));

// Check multiple possible locations for the built library
Expand Down
2 changes: 1 addition & 1 deletion src/uu/stdbuf/src/libstdbuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories.workspace = true
edition.workspace = true

[lib]
name = "libstdbuf"
name = "stdbuf"
path = "src/libstdbuf.rs"
crate-type = ["cdylib"]

Expand Down
Loading