From 130a6aad6a8ce6986a6c2225314d4735b2033278 Mon Sep 17 00:00:00 2001 From: Andrey Akhmichin <15944199+nekonomicon@users.noreply.github.com> Date: Sat, 10 Feb 2024 00:45:10 +0500 Subject: [PATCH] Fix error message if LTO does not available. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04cf5bce..4396dfec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -157,7 +157,7 @@ check_ipo_supported(RESULT HAVE_LTO OUTPUT LTO_ERROR) if(HAVE_LTO) message(STATUS "IPO / LTO enabled") else() - message(STATUS "IPO / LTO not supported: <${LTO_ERROR}>") + message(STATUS "IPO / LTO not supported: ${LTO_ERROR}") endif() check_include_file("tgmath.h" HAVE_TGMATH_H)