From cb1ddac98124f048f6d2d51006c431a9543ed706 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=ADguel=20=C3=81ngel=20Mulero=20Mart=C3=ADnez?= Date: Thu, 1 Jun 2023 15:30:29 +0200 Subject: [PATCH] firmware-utils: fix typo in error message when no OpenSSL library found MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Simply fix a typo in the error message: librry -> library Signed-off-by: Míguel Ángel Mulero Martínez --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 31e0a06..41c8da4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ IF(NOT ZLIB_FOUND) ENDIF() IF(NOT OPENSSL_FOUND) - MESSAGE(FATAL_ERROR "Unable to find OpenSSL librry.") + MESSAGE(FATAL_ERROR "Unable to find OpenSSL library.") ENDIF() ADD_DEFINITIONS(-Wall -Wno-unused-parameter) -- 2.30.2