From ed456b0c7e7d2bbdba0f97328367b19324a25625 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Mon, 5 Jul 2021 10:40:48 -0300 Subject: [PATCH] Fix typo in libuv error message --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0583bc5e0..8f982142c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,7 +141,7 @@ if(LIBUV_FOUND AND NOT BUILD_STATIC_DEPS) target_link_libraries(libuv INTERFACE PkgConfig::LIBUV) else() if(NOT BUILD_STATIC_DEPS) - message(FATAL_ERROR "Could not find libu >= 1.28.0; install it on your system or use -DBUILD_STATIC_DEPS=ON") + message(FATAL_ERROR "Could not find libuv >= 1.28.0; install it on your system or use -DBUILD_STATIC_DEPS=ON") endif() endif()