From 9af611fb8fcb161e51501a244698662ff4704f20 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Mon, 25 Feb 2019 15:39:38 -0500 Subject: [PATCH] [minizip] Fix BZip2 Dependency on Linux (#5448) It was spelled `Bzip2` when the dependency was `BZip2`. --- ports/minizip/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/minizip/CMakeLists.txt b/ports/minizip/CMakeLists.txt index 0b572b39c4..4ccf6972a4 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)