Title: [159866] trunk
Revision
159866
Author
[email protected]
Date
2013-11-29 02:51:50 -0800 (Fri, 29 Nov 2013)

Log Message

[cmake] Fix cmake warning: Argument not separated from preceding token by whitespace
https://bugs.webkit.org/show_bug.cgi?id=124899

Patch by Laszlo Vidacs <[email protected]> on 2013-11-29
Reviewed by Gyuyoung Kim.

* Source/cmake/FindCairo.cmake:
* Source/cmake/FindGStreamer.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (159865 => 159866)


--- trunk/ChangeLog	2013-11-29 08:37:31 UTC (rev 159865)
+++ trunk/ChangeLog	2013-11-29 10:51:50 UTC (rev 159866)
@@ -1,3 +1,13 @@
+2013-11-29  Laszlo Vidacs  <[email protected]>
+
+        [cmake] Fix cmake warning: Argument not separated from preceding token by whitespace
+        https://bugs.webkit.org/show_bug.cgi?id=124899
+
+        Reviewed by Gyuyoung Kim.
+
+        * Source/cmake/FindCairo.cmake:
+        * Source/cmake/FindGStreamer.cmake:
+
 2013-11-28  Antti Koivisto  <[email protected]>
 
         Remove feature: CSS variables

Modified: trunk/Source/cmake/FindCairo.cmake (159865 => 159866)


--- trunk/Source/cmake/FindCairo.cmake	2013-11-29 08:37:31 UTC (rev 159865)
+++ trunk/Source/cmake/FindCairo.cmake	2013-11-29 10:51:50 UTC (rev 159866)
@@ -62,7 +62,7 @@
 endif ()
 
 if ("${Cairo_FIND_VERSION}" VERSION_GREATER "${CAIRO_VERSION}")
-    message(FATAL_ERROR "Required version ("${Cairo_FIND_VERSION}") is higher than found version ("${CAIRO_VERSION}")")
+    message(FATAL_ERROR "Required version (" ${Cairo_FIND_VERSION} ") is higher than found version (" ${CAIRO_VERSION} ")")
 endif ()
 
 include(FindPackageHandleStandardArgs)

Modified: trunk/Source/cmake/FindGStreamer.cmake (159865 => 159866)


--- trunk/Source/cmake/FindGStreamer.cmake	2013-11-29 08:37:31 UTC (rev 159865)
+++ trunk/Source/cmake/FindGStreamer.cmake	2013-11-29 10:51:50 UTC (rev 159866)
@@ -94,7 +94,7 @@
 endif ()
 
 if ("${GStreamer_FIND_VERSION}" VERSION_GREATER "${GSTREAMER_VERSION}")
-    message(FATAL_ERROR "Required version ("${GStreamer_FIND_VERSION}") is higher than found version ("${GSTREAMER_VERSION}")")
+    message(FATAL_ERROR "Required version (" ${GStreamer_FIND_VERSION} ") is higher than found version (" ${GSTREAMER_VERSION} ")")
 endif ()
 
 # -------------------------
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to