diff options
| author | Andreas Sturmlechner <asturm@gentoo.org> | 2025-10-21 11:48:57 +0200 |
|---|---|---|
| committer | Andreas Sturmlechner <asturm@gentoo.org> | 2025-10-21 11:51:08 +0200 |
| commit | bc75aeefbdd39175b61779bfbcd539597bebd667 (patch) | |
| tree | 2769911f9e0e92127b6b14c03ee852a1aa8de683 /eclass | |
| parent | 3e8130852a92093766683a0c82eb322fbfcfd52d (diff) | |
| download | kde-bc75aeefbdd39175b61779bfbcd539597bebd667.tar.gz kde-bc75aeefbdd39175b61779bfbcd539597bebd667.tar.bz2 kde-bc75aeefbdd39175b61779bfbcd539597bebd667.zip | |
cmake.eclass: _cmake_minreqver-info(): Add missing semicolon
Thanks-to: Arisu Tachibana <alicef@gentoo.org>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
| -rw-r--r-- | eclass/cmake.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index f214ec36c2d..a4b0e5b4e08 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -339,7 +339,7 @@ _cmake_minreqver-info() { [[ -n ${_CMAKE_MINREQVER_CMAKE305[@]} ]] && warnlvl=305 [[ -n ${_CMAKE_MINREQVER_CMAKE310[@]} ]] || [[ ${warnlvl} ]] && warnlvl=310 [[ ${CMAKE_ECM_MODE} == true ]] && - { [[ -n ${_CMAKE_MINREQVER_CMAKE316[@]} ]] || [[ ${warnlvl} ]] } && warnlvl=316 + { [[ -n ${_CMAKE_MINREQVER_CMAKE316[@]} ]] || [[ ${warnlvl} ]]; } && warnlvl=316 local weak_qaw="QA Notice: " minreqver_qanotice() { |
