Skip to content

Commit

Permalink
Merge #332
Browse files Browse the repository at this point in the history
332: Fix typo r=jdroenner a=mwm126

Panic message should refer to windows-msvc

- [x] I agree to follow the project's [code of conduct](https://github.com/georust/gdal/blob/master/CODE_OF_CONDUCT.md).
- [x] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users.
---



Co-authored-by: Mark Meredith <mwm126@pm.me>
  • Loading branch information
bors[bot] and mwm126 authored Nov 11, 2022
2 parents 3eefd64 + f8cb58d commit 078aa04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdal-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ fn main() {
}
if !found {
if cfg!(target_env = "msvc") {
panic!("windows-gnu requires gdal_i.lib to be present in either $GDAL_LIB_DIR or $GDAL_HOME\\lib.");
panic!("windows-msvc requires gdal_i.lib to be present in either $GDAL_LIB_DIR or $GDAL_HOME\\lib.");
}

// otherwise, look for a gdalxxx.dll in $GDAL_HOME/bin
Expand Down

0 comments on commit 078aa04

Please sign in to comment.