Skip to content

Commit ca1a1e0

Browse files
committed
Try pkg-config on Windows targets
pkg-config is still useful to be tried on Windows targets, mainly when building with MinGW.
1 parent 14d51cf commit ca1a1e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

curl-sys/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ fn main() {
4040
if try_vcpkg() {
4141
return;
4242
}
43-
} else if try_pkg_config() {
43+
}
44+
if try_pkg_config() {
4445
return;
4546
}
4647
}

0 commit comments

Comments
 (0)