Title: [192312] trunk
Revision
192312
Author
commit-qu...@webkit.org
Date
2015-11-11 10:03:00 -0800 (Wed, 11 Nov 2015)

Log Message

[GTK][Mac] don't install .frameworks
https://bugs.webkit.org/show_bug.cgi?id=151136

Patch by Philippe Normand <pnorm...@igalia.com> on 2015-11-11
Reviewed by Alex Christensen.

* Source/cmake/WebKitMacros.cmake: Don't install framework files when building the GTK port on Mac.

Modified Paths

Diff

Modified: trunk/ChangeLog (192311 => 192312)


--- trunk/ChangeLog	2015-11-11 16:36:29 UTC (rev 192311)
+++ trunk/ChangeLog	2015-11-11 18:03:00 UTC (rev 192312)
@@ -1,3 +1,12 @@
+2015-11-11  Philippe Normand  <pnorm...@igalia.com>
+
+        [GTK][Mac] don't install .frameworks
+        https://bugs.webkit.org/show_bug.cgi?id=151136
+
+        Reviewed by Alex Christensen.
+
+        * Source/cmake/WebKitMacros.cmake: Don't install framework files when building the GTK port on Mac.
+
 2015-11-10  Pranjal Jumde  <pju...@apple.com>
 
         Fixed crash loading Mozilla layout test editor/libeditor/crashtests/431086-1.xhtml.

Modified: trunk/Source/cmake/WebKitMacros.cmake (192311 => 192312)


--- trunk/Source/cmake/WebKitMacros.cmake	2015-11-11 16:36:29 UTC (rev 192311)
+++ trunk/Source/cmake/WebKitMacros.cmake	2015-11-11 18:03:00 UTC (rev 192312)
@@ -243,7 +243,7 @@
 endmacro()
 
 macro(WEBKIT_FRAMEWORK _target)
-    if (APPLE)
+    if (APPLE AND NOT PORT STREQUAL "GTK")
         set_target_properties(${_target} PROPERTIES FRAMEWORK TRUE)
         install(TARGETS ${_target} FRAMEWORK DESTINATION ${LIB_INSTALL_DIR})
     endif ()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to