From d1daf3fd108dafb23c76e80e61138db4f07f720a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Sun, 9 Sep 2018 23:29:34 +0100 Subject: [PATCH] CMake: Remove link test output line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The mode keyword STATUS needs to be capitalized, but this line is mostly redundant with the check_c_source_compiles_output(), so just remove it. Change-Id: I7f29915a7ab2c4b5681e0159773d9216643f8a9c Reviewed-on: https://code.wireshark.org/review/29524 Reviewed-by: João Valverde --- cmake/modules/CheckCLinkerFlag.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/modules/CheckCLinkerFlag.cmake b/cmake/modules/CheckCLinkerFlag.cmake index fa24e7c42d..f21d573f70 100644 --- a/cmake/modules/CheckCLinkerFlag.cmake +++ b/cmake/modules/CheckCLinkerFlag.cmake @@ -51,7 +51,6 @@ MACRO (CHECK_C_LINKER_FLAG _FLAG _RESULT) set(CMAKE_REQUIRED_LIBRARIES "-Werror=unused-command-line-argument ${CMAKE_REQUIRED_LIBRARIES}") endif() - message(status "check linker flag - test linker flags: ${_FLAG}") check_c_source_compiles("int main(void) { return 0;}" ${_RESULT}) set(CMAKE_REQUIRED_LIBRARIES "${save_CMAKE_REQUIRED_LIBRARIES}") ENDMACRO (CHECK_C_LINKER_FLAG)