diff options
| author | Míguel Ángel Mulero Martínez | 2023-06-01 13:30:29 +0000 |
|---|---|---|
| committer | Rafał Miłecki | 2023-06-22 10:45:05 +0000 |
| commit | cb1ddac98124f048f6d2d51006c431a9543ed706 (patch) | |
| tree | 04e5b709a908ed348532ec35125167a298d9f1da | |
| parent | f730ad2fa0b4728e2bd66771d22cf642909e020e (diff) | |
| download | firmware-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.txt | 2 |
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) |