diff options
author | aasivov <aasivov@users.noreply.github.com> | 2019-07-17 02:01:45 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2019-07-17 02:03:29 -0400 |
commit | 2527eca91e768e5192a77c1721d02b0ffc253df2 (patch) | |
tree | b7d0265c6ac9624b6e206c90f32dd06f7efce57e /CMakeLists.txt | |
parent | 28f6fda8dcedbe49dcbdb5c5d3a272486d559abc (diff) | |
download | curl-2527eca91e768e5192a77c1721d02b0ffc253df2.tar.gz |
cmake: Fix finding Brotli on case-sensitive file systems
- Find package "Brotli" instead of "BROTLI" since the former is the
casing used for CMake/FindBrotli.cmake, and otherwise find_package
may fail on a case-sensitive file system.
Fixes https://github.com/curl/curl/issues/4117
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 388f790db..29cb5f598 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -530,7 +530,7 @@ endif() option(CURL_BROTLI "Set to ON to enable building curl with brotli support." OFF) set(HAVE_BROTLI OFF) if(CURL_BROTLI) - find_package(BROTLI QUIET) + find_package(Brotli QUIET) if(BROTLI_FOUND) set(HAVE_BROTLI ON) list(APPEND CURL_LIBS ${BROTLI_LIBRARIES}) |