Title: [114257] trunk/Tools
Revision
114257
Author
commit-qu...@webkit.org
Date
2012-04-16 08:15:37 -0700 (Mon, 16 Apr 2012)

Log Message

build-webkit --gtk --no-webkit2 builds WK2
https://bugs.webkit.org/show_bug.cgi?id=83977

Patch by Philippe Normand <pnorm...@igalia.com> on 2012-04-16
Reviewed by Martin Robinson.

* Scripts/build-webkit: Fixup ./configure option to disable
WebKit2 build.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (114256 => 114257)


--- trunk/Tools/ChangeLog	2012-04-16 15:13:25 UTC (rev 114256)
+++ trunk/Tools/ChangeLog	2012-04-16 15:15:37 UTC (rev 114257)
@@ -1,3 +1,13 @@
+2012-04-16  Philippe Normand  <pnorm...@igalia.com>
+
+        build-webkit --gtk --no-webkit2 builds WK2
+        https://bugs.webkit.org/show_bug.cgi?id=83977
+
+        Reviewed by Martin Robinson.
+
+        * Scripts/build-webkit: Fixup ./configure option to disable
+        WebKit2 build.
+
 2012-04-16  Sudarsana Nagineni  <sudarsana.nagin...@linux.intel.com>
 
         [EFL] [DRT] Feeding key events with invalid keyName

Modified: trunk/Tools/Scripts/build-webkit (114256 => 114257)


--- trunk/Tools/Scripts/build-webkit	2012-04-16 15:13:25 UTC (rev 114256)
+++ trunk/Tools/Scripts/build-webkit	2012-04-16 15:15:37 UTC (rev 114257)
@@ -711,8 +711,8 @@
 
     my $project = basename($dir);
     if (isGtk()) {
-        if (!$noWebKit2) {
-            unshift(@options, "--enable-webkit2");
+        if ($noWebKit2) {
+            unshift(@options, "--disable-webkit2");
         }
         $result = buildGtkProject($project, $clean, @options);
     } elsif (isAppleMacWebKit()) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to