From 603bd7e67feb91e5e786ca8a33888ff6995515ac Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sat, 13 Jan 2024 22:16:14 -0500 Subject: [PATCH] CMake: print newline when vectorization is disabled. --- cmake/setup_write_config.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/setup_write_config.cmake b/cmake/setup_write_config.cmake index 57faec6809..942d7dbd3d 100644 --- a/cmake/setup_write_config.cmake +++ b/cmake/setup_write_config.cmake @@ -104,6 +104,8 @@ endif() if(NOT "${_instructions}" STREQUAL "") to_string(_string ${_instructions}) _both(" (${_string})\n") +else() + _both("\n") endif() if(CMAKE_CROSSCOMPILING) -- 2.39.5