From 9273b8f42113950f9f87d3e5e3685b8fb4071077 Mon Sep 17 00:00:00 2001 From: Andrey Vostrikov Date: Fri, 2 Dec 2022 09:46:33 +0000 Subject: CheckSymbolExists: Restore newline at end of test source Refactoring in commit db76876db5 (Modules: Use new SOURCES_FROM_* try_compile (1/2), 2022-09-26, v3.25.0-rc1~74^2~1) accidentally dropped the final newline of the test source, which was previously provided by the input to `configure_file`. The C standard requires a newline at the end of file, so add one explicitly. Signed-off-by: Andrey Vostrikov --- Modules/CheckSymbolExists.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/CheckSymbolExists.cmake b/Modules/CheckSymbolExists.cmake index 0d44d56..722d50f 100644 --- a/Modules/CheckSymbolExists.cmake +++ b/Modules/CheckSymbolExists.cmake @@ -136,7 +136,7 @@ int main(int argc, char** argv) ${_CSE_CHECK_NON_MACRO}") endif() string(APPEND _CSE_SOURCE " -}") +}\n") unset(_CSE_CHECK_NON_MACRO) if(NOT CMAKE_REQUIRED_QUIET) -- cgit v0.12