summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMíguel Ángel Mulero Martínez2023-06-01 13:30:29 +0000
committerRafał Miłecki2023-06-22 10:45:05 +0000
commitcb1ddac98124f048f6d2d51006c431a9543ed706 (patch)
tree04e5b709a908ed348532ec35125167a298d9f1da
parentf730ad2fa0b4728e2bd66771d22cf642909e020e (diff)
downloadfirmware-utils-cb1ddac98124f048f6d2d51006c431a9543ed706.tar.gz
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 <migmul@gmail.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)