Title: [224118] trunk/Source/WebKit
Revision
224118
Author
[email protected]
Date
2017-10-27 10:33:54 -0700 (Fri, 27 Oct 2017)

Log Message

[GTK][CMake] Incorrect conditional check when adding build dir to GIR runtime library path
https://bugs.webkit.org/show_bug.cgi?id=178936

Reviewed by Michael Catanzaro.

* PlatformGTK.cmake: Fix spelling of variable used in conditional.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (224117 => 224118)


--- trunk/Source/WebKit/ChangeLog	2017-10-27 17:16:46 UTC (rev 224117)
+++ trunk/Source/WebKit/ChangeLog	2017-10-27 17:33:54 UTC (rev 224118)
@@ -1,3 +1,12 @@
+2017-10-27  Adrian Perez de Castro  <[email protected]>
+
+        [GTK][CMake] Incorrect conditional check when adding build dir to GIR runtime library path
+        https://bugs.webkit.org/show_bug.cgi?id=178936
+
+        Reviewed by Michael Catanzaro.
+
+        * PlatformGTK.cmake: Fix spelling of variable used in conditional.
+
 2017-10-27  Chris Dumez  <[email protected]>
 
         Add initial support for serviceWorkerClient.postMessage()

Modified: trunk/Source/WebKit/PlatformGTK.cmake (224117 => 224118)


--- trunk/Source/WebKit/PlatformGTK.cmake	2017-10-27 17:16:46 UTC (rev 224117)
+++ trunk/Source/WebKit/PlatformGTK.cmake	2017-10-27 17:33:54 UTC (rev 224118)
@@ -1110,7 +1110,7 @@
     set(PREV_LOADER_LIBRARY_PATH "$ENV{LD_LIBRARY_PATH}")
 endif ()
 
-string(COMPARE EQUAL "${PREV_LOADER_LIBRARY_PATH}" "" ld_library_path_not_exist)
+string(COMPARE EQUAL "${PREV_LOADER_LIBRARY_PATH}" "" ld_library_path_does_not_exist)
 if (ld_library_path_does_not_exist)
     set(INTROSPECTION_ADDITIONAL_LIBRARY_PATH
         "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to