Title: [128460] trunk/Tools
Revision
128460
Author
kenn...@webkit.org
Date
2012-09-13 07:59:22 -0700 (Thu, 13 Sep 2012)

Log Message

The Script run-launcher should support -2 in combination with --efl
https://bugs.webkit.org/show_bug.cgi?id=96639

Reviewed by Simon Hausmann.

Support running the MiniBrowser then supplied -2 as argument.

* Scripts/run-launcher:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (128459 => 128460)


--- trunk/Tools/ChangeLog	2012-09-13 14:58:35 UTC (rev 128459)
+++ trunk/Tools/ChangeLog	2012-09-13 14:59:22 UTC (rev 128460)
@@ -1,3 +1,14 @@
+2012-09-13  Kenneth Rohde Christiansen  <kenn...@webkit.org>
+
+        The Script run-launcher should support -2 in combination with --efl
+        https://bugs.webkit.org/show_bug.cgi?id=96639
+
+        Reviewed by Simon Hausmann.
+
+        Support running the MiniBrowser then supplied -2 as argument.
+
+        * Scripts/run-launcher:
+
 2012-09-13  Raphael Kubo da Costa  <raphael.kubo.da.co...@intel.com>
 
         Unreviewed, add my Intel email address to the list.

Modified: trunk/Tools/Scripts/run-launcher (128459 => 128460)


--- trunk/Tools/Scripts/run-launcher	2012-09-13 14:58:35 UTC (rev 128459)
+++ trunk/Tools/Scripts/run-launcher	2012-09-13 14:59:22 UTC (rev 128460)
@@ -73,7 +73,11 @@
     }
     
     if (isEfl()) {
-        unshift(@ARGV, catdir($launcherPath, "bin", "EWebLauncher"));
+        if (isWK2()) {
+            unshift(@ARGV, catdir($launcherPath, "bin", "MiniBrowser"));
+        } else {
+            unshift(@ARGV, catdir($launcherPath, "bin", "EWebLauncher"));
+        }
         $launcherPath = catdir(sourceDir(), "Tools", "efl", "run-with-jhbuild");
     }
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to