Skip to content

Commit 3c2aa27

Browse files
committed
remove iOS target from pkg-config installation instructions as Homebrew does not support it
Signed-off-by: Rui Chen <[email protected]>
1 parent 19cdc2d commit 3c2aa27

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
@@ -285,7 +285,7 @@ impl fmt::Display for Error {
285285
io::ErrorKind::NotFound => {
286286
let crate_name =
287287
std::env::var("CARGO_PKG_NAME").unwrap_or_else(|_| "sys".to_owned());
288-
let instructions = if cfg!(target_os = "macos") || cfg!(target_os = "ios") {
288+
let instructions = if cfg!(target_os = "macos") {
289289
"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\

0 commit comments

Comments
 (0)