From: Míguel Ángel Mulero Martínez Date: Thu, 1 Jun 2023 13:30:29 +0000 (+0200) Subject: firmware-utils: fix typo in error message when no OpenSSL library found X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=cb1ddac98124f048f6d2d51006c431a9543ed706;p=project%2Ffirmware-utils.git firmware-utils: fix typo in error message when no OpenSSL library found Simply fix a typo in the error message: librry -> library Signed-off-by: Míguel Ángel Mulero Martínez --- 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)