From fbbb1f256f0997201213daaa8ac4cc5bbccbb081 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Fri, 22 Apr 2022 00:15:50 -0300 Subject: [PATCH] build: replace CMake warning message color --- build-support/3rd-party/colored-messages.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-support/3rd-party/colored-messages.cmake b/build-support/3rd-party/colored-messages.cmake index bb7e69ef4..2bb00d273 100644 --- a/build-support/3rd-party/colored-messages.cmake +++ b/build-support/3rd-party/colored-messages.cmake @@ -78,7 +78,7 @@ if(${NS3_COLORED_OUTPUT} OR "$ENV{CLICOLOR}") _message(${MessageType} "${BoldRed}${ARGV}${ColourReset}") elseif(MessageType STREQUAL WARNING) list(REMOVE_AT ARGV 0) - _message(${MessageType} "${BoldYellow}${ARGV}${ColourReset}") + _message(${MessageType} "${Yellow}${ARGV}${ColourReset}") elseif(MessageType STREQUAL AUTHOR_WARNING) list(REMOVE_AT ARGV 0) _message(${MessageType} "${BoldCyan}${ARGV}${ColourReset}")