From 578a95186d0142115e9395483d0212da5bc600ac Mon Sep 17 00:00:00 2001
From: Vassil Vassilev <vvasilev@cern.ch>
Date: Wed, 15 Mar 2017 10:50:13 +0100
Subject: [PATCH] Downgrade warning into a status message.

This gets picked up by jenkins and marks the PR builds as unstable.
---
 interpreter/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/interpreter/CMakeLists.txt b/interpreter/CMakeLists.txt
index ded418c4f79..6a6f07ec71d 100644
--- a/interpreter/CMakeLists.txt
+++ b/interpreter/CMakeLists.txt
@@ -89,8 +89,8 @@ if(NOT DEFINED LLVM_BUILD_TYPE)
   set(LLVM_BUILD_TYPE Release CACHE STRING "Build type for LLVM (used to set CMAKE_BUILD_TYPE)")
 endif()
 if( CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT LLVM_BUILD_TYPE STREQUAL "Debug")
-  message(WARNING "Selected a 'Debug' build (CMAKE_BUILD_TYPE), be aware that the embedded LLVM will still be built as 'Release'."
-                  " Use the variable LLVM_BUILD_TYPE to control it.")
+  message(STATUS "Selected a 'Debug' build (CMAKE_BUILD_TYPE), be aware that the embedded LLVM will still be built as 'Release'."
+                 " Use the variable LLVM_BUILD_TYPE to control it.")
 endif()
 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
   set(LLVM_ENABLE_ASSERTIONS "YES")
-- 
GitLab