tidy-up: miscellaneous

- gnutls, mbedtls: fix casing in log messages.
- src/tool_cfgable.h: drop unused header.
- appveyor.sh: variable style.
- cmakelint.sh: sync with libssh2, catch `.cmake.in` explicitly.
- examples: drop obsolete comments, exclamation marks.
- fix comment typos, casing.

Closes #19839
This commit is contained in:
Viktor Szakats 2025-11-21 12:34:02 +01:00
parent 0476e4fc65
commit dfd781ff62
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
11 changed files with 28 additions and 34 deletions

View file

@ -45,8 +45,8 @@ if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
# Install custom cmake version
if [ -n "${CMAKE_VERSION:-}" ]; then
cmake_ver=$(printf '%02d%02d' \
"$(echo "$CMAKE_VERSION" | cut -f1 -d.)" \
"$(echo "$CMAKE_VERSION" | cut -f2 -d.)")
"$(echo "${CMAKE_VERSION}" | cut -f1 -d.)" \
"$(echo "${CMAKE_VERSION}" | cut -f2 -d.)")
if [ "${cmake_ver}" -ge '0320' ]; then
fn="cmake-${CMAKE_VERSION}-windows-x86_64"
else