diff options
| author | Connor Fitzgerald <connorwadefitzgerald@gmail.com> | 2019-02-25 15:39:38 -0500 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2019-02-25 12:39:38 -0800 |
| commit | 9af611fb8fcb161e51501a244698662ff4704f20 (patch) | |
| tree | 89b805715d81765b373d21a63c7386c7d7035b7f | |
| parent | 0f04ebaf579bbb56719244cefcd23ab038f7e15c (diff) | |
| download | vcpkg-9af611fb8fcb161e51501a244698662ff4704f20.tar.gz vcpkg-9af611fb8fcb161e51501a244698662ff4704f20.zip | |
[minizip] Fix BZip2 Dependency on Linux (#5448)
It was spelled `Bzip2` when the dependency was `BZip2`.
| -rw-r--r-- | ports/minizip/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/minizip/CMakeLists.txt b/ports/minizip/CMakeLists.txt index 0b572b39c..4ccf6972a 100644 --- a/ports/minizip/CMakeLists.txt +++ b/ports/minizip/CMakeLists.txt @@ -7,7 +7,7 @@ endif() find_package(ZLIB REQUIRED) -find_package(Bzip2 REQUIRED) +find_package(BZip2 REQUIRED) set(MIN_SRC contrib/minizip) |
