Title: [258467] trunk
Revision
258467
Author
[email protected]
Date
2020-03-14 09:10:25 -0700 (Sat, 14 Mar 2020)

Log Message

[CMake] Warning when ccache is not installed
https://bugs.webkit.org/show_bug.cgi?id=208952

Patch by Michael Catanzaro <[email protected]> on 2020-03-14
Reviewed by Daniel Bates.

Change the warning when ccache is not installed to a status message. We shouldn't be
printing warnings except when there is an actual problem.

* Source/cmake/WebKitCCache.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (258466 => 258467)


--- trunk/ChangeLog	2020-03-14 12:57:36 UTC (rev 258466)
+++ trunk/ChangeLog	2020-03-14 16:10:25 UTC (rev 258467)
@@ -1,3 +1,15 @@
+2020-03-14  Michael Catanzaro  <[email protected]>
+
+        [CMake] Warning when ccache is not installed
+        https://bugs.webkit.org/show_bug.cgi?id=208952
+
+        Reviewed by Daniel Bates.
+
+        Change the warning when ccache is not installed to a status message. We shouldn't be
+        printing warnings except when there is an actual problem.
+
+        * Source/cmake/WebKitCCache.cmake:
+
 2020-03-13  Konstantin Tokarev  <[email protected]>
 
         [CMake] Eleminate mismatches between Find* module names and variables they set

Modified: trunk/Source/cmake/WebKitCCache.cmake (258466 => 258467)


--- trunk/Source/cmake/WebKitCCache.cmake	2020-03-14 12:57:36 UTC (rev 258466)
+++ trunk/Source/cmake/WebKitCCache.cmake	2020-03-14 16:10:25 UTC (rev 258467)
@@ -22,7 +22,7 @@
             endif ()
         endif ()
     else ()
-        message(WARNING "Enabling ccache: Couldn't find ccache program. Not enabling it.")
+        message(STATUS "Enabling ccache: Couldn't find ccache program. Not enabling it.")
     endif ()
 endif ()
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to