Title: [136957] trunk/Tools
Revision
136957
Author
commit-qu...@webkit.org
Date
2012-12-07 08:54:31 -0800 (Fri, 07 Dec 2012)

Log Message

[EFL] Fix tools for WebKit2-only builds
https://bugs.webkit.org/show_bug.cgi?id=103904

Patch by KyungTae Kim <ktf....@samsung.com> on 2012-12-07
Reviewed by Laszlo Gombos.

The libewebkit2.so should be used for library path for EFL WebKit2.

* Scripts/webkitdirs.pm:
(builtDylibPathForName):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (136956 => 136957)


--- trunk/Tools/ChangeLog	2012-12-07 16:32:19 UTC (rev 136956)
+++ trunk/Tools/ChangeLog	2012-12-07 16:54:31 UTC (rev 136957)
@@ -1,3 +1,15 @@
+2012-12-07  KyungTae Kim  <ktf....@samsung.com>
+
+        [EFL] Fix tools for WebKit2-only builds
+        https://bugs.webkit.org/show_bug.cgi?id=103904
+
+        Reviewed by Laszlo Gombos.
+
+        The libewebkit2.so should be used for library path for EFL WebKit2.
+
+        * Scripts/webkitdirs.pm:
+        (builtDylibPathForName):
+
 2012-12-07  Xiaobo Wang  <xbw...@torchmobile.com.cn>
 
         [BlackBerry] DRT - Update implementation of TestRunner.setCustomPolicyDelegate()

Modified: trunk/Tools/Scripts/webkitdirs.pm (136956 => 136957)


--- trunk/Tools/Scripts/webkitdirs.pm	2012-12-07 16:32:19 UTC (rev 136956)
+++ trunk/Tools/Scripts/webkitdirs.pm	2012-12-07 16:54:31 UTC (rev 136957)
@@ -774,6 +774,9 @@
         return "NotFound";
     }
     if (isEfl()) {
+        if (isWK2()) {
+            return "$configurationProductDir/lib/libewebkit2.so";
+        }
         return "$configurationProductDir/lib/libewebkit.so";
     }
     if (isWinCE()) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to