Skip to content

Commit 19cdc2d

Browse files
committed
Use pkgconf instead of pkg-config for brew builds
Signed-off-by: Rui Chen <[email protected]>
1 parent 91fcbdb commit 19cdc2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ impl fmt::Display for Error {
286286
let crate_name =
287287
std::env::var("CARGO_PKG_NAME").unwrap_or_else(|_| "sys".to_owned());
288288
let instructions = if cfg!(target_os = "macos") || cfg!(target_os = "ios") {
289-
"Try `brew install pkg-config` if you have Homebrew.\n"
289+
"Try `brew install pkgconf` if you have Homebrew.\n"
290290
} else if cfg!(unix) {
291291
"Try `apt install pkg-config`, or `yum install pkg-config`,\n\
292292
or `pkg install pkg-config`, or `apk add pkgconfig` \

0 commit comments

Comments
 (0)