Title: [160995] trunk/Source/_javascript_Core
Revision
160995
Author
mrobin...@webkit.org
Date
2013-12-23 06:46:53 -0800 (Mon, 23 Dec 2013)

Log Message

[CMake] Fix typo from r160812
https://bugs.webkit.org/show_bug.cgi?id=126145

Reviewed by Gustavo Noronha Silva.

* CMakeLists.txt: Fix typo when detecting the type of library.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (160994 => 160995)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2013-12-23 14:45:44 UTC (rev 160994)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2013-12-23 14:46:53 UTC (rev 160995)
@@ -761,7 +761,7 @@
     set_target_properties(_javascript_Core PROPERTIES OUTPUT_NAME ${_javascript_Core_OUTPUT_NAME})
 endif ()
 
-if (${_javascript_Core_LIBRARY_TYPE} STREQUAL "SHARED_LIBRARY")
+if (${_javascript_Core_LIBRARY_TYPE} STREQUAL "SHARED")
     POPULATE_LIBRARY_VERSION(_javascript_CORE)
     set_target_properties(_javascript_Core PROPERTIES VERSION ${_javascript_CORE_VERSION} SOVERSION ${_javascript_CORE_VERSION_MAJOR})
     install(TARGETS _javascript_Core DESTINATION "${LIB_INSTALL_DIR}")

Modified: trunk/Source/_javascript_Core/ChangeLog (160994 => 160995)


--- trunk/Source/_javascript_Core/ChangeLog	2013-12-23 14:45:44 UTC (rev 160994)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-12-23 14:46:53 UTC (rev 160995)
@@ -1,5 +1,14 @@
 2013-12-22  Martin Robinson  <mrobin...@igalia.com>
 
+        [CMake] Fix typo from r160812
+        https://bugs.webkit.org/show_bug.cgi?id=126145
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * CMakeLists.txt: Fix typo when detecting the type of library.
+
+2013-12-22  Martin Robinson  <mrobin...@igalia.com>
+
         [GTK][CMake] libtool-compatible soversion calculation
         https://bugs.webkit.org/show_bug.cgi?id=125511
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to