Title: [99216] trunk/Tools
Revision
99216
Author
[email protected]
Date
2011-11-03 10:41:41 -0700 (Thu, 03 Nov 2011)

Log Message

Patch by Thouraya ANDOLSI <[email protected]> on 2011-11-03
Reviewed by Martin Robinson.

[GTK] arguments passed to build-jsc are not taken into account
https://bugs.webkit.org/show_bug.cgi?id=58333

* Scripts/build-jsc:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (99215 => 99216)


--- trunk/Tools/ChangeLog	2011-11-03 17:37:10 UTC (rev 99215)
+++ trunk/Tools/ChangeLog	2011-11-03 17:41:41 UTC (rev 99216)
@@ -1,3 +1,12 @@
+2011-11-03  Thouraya ANDOLSI  <[email protected]>
+
+        Reviewed by Martin Robinson.
+
+        [GTK] arguments passed to build-jsc are not taken into account
+        https://bugs.webkit.org/show_bug.cgi?id=58333
+
+        * Scripts/build-jsc:
+
 2011-11-03  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Show url of history items in a status bar in MiniBrowser

Modified: trunk/Tools/Scripts/build-jsc (99215 => 99216)


--- trunk/Tools/Scripts/build-jsc	2011-11-03 17:37:10 UTC (rev 99215)
+++ trunk/Tools/Scripts/build-jsc	2011-11-03 17:41:41 UTC (rev 99216)
@@ -68,7 +68,8 @@
 } elsif (isAppleWinWebKit()) {
     $result = buildVisualStudioProject("_javascript_Core.vcproj/_javascript_Core.sln");
 } elsif (isGtk()) {
-    $result = buildGtkProject("_javascript_Core");
+    checkForArgumentAndRemoveFromARGV("--gtk");
+    $result = buildGtkProject("_javascript_Core", 0, @ARGV);
 } elsif (isQt()) {
     # Remove duplicated --qt options to avoid passing them to qmake
     checkForArgumentAndRemoveFromARGV("--qt");
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to