diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-02-17 17:14:59 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-02-17 17:14:59 -0800 |
| commit | 8e5850b8d81ab32509d2db1264ac2e715a26bd9e (patch) | |
| tree | 7119ed7338963ad706a3772333114486a718e015 | |
| parent | bb15006411d0256a2f476e977ea9748ea553b5a3 (diff) | |
| download | nng-8e5850b8d81ab32509d2db1264ac2e715a26bd9e.tar.gz nng-8e5850b8d81ab32509d2db1264ac2e715a26bd9e.tar.bz2 nng-8e5850b8d81ab32509d2db1264ac2e715a26bd9e.zip | |
fix typo in test for CMAKE_FIND_PACKAGE_PREFER_CONFIG
| -rw-r--r-- | src/supplemental/tls/mbedtls/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supplemental/tls/mbedtls/CMakeLists.txt b/src/supplemental/tls/mbedtls/CMakeLists.txt index fda226e5..e3d767fc 100644 --- a/src/supplemental/tls/mbedtls/CMakeLists.txt +++ b/src/supplemental/tls/mbedtls/CMakeLists.txt @@ -27,7 +27,7 @@ if (NNG_TLS_ENGINE STREQUAL "mbed") # mbedTLS v3 has a config file, which should work better than # what we do here. We do restore the setting though because # user applications might not expect this. - if (NOT CMAKE_FIND_PAKCAGE_PREFER_CONFIG) + if (NOT CMAKE_FIND_PACKAGE_PREFER_CONFIG) set(CMAKE_FIND_PACKAGE_PREFER_CONFIG TRUE) find_package(MbedTLS REQUIRED) set(CMAKE_FIND_PACKAGE_PREFER_CONFIG FALSE) |
