Title: [139449] trunk/Tools
Revision
139449
Author
[email protected]
Date
2013-01-11 08:49:25 -0800 (Fri, 11 Jan 2013)

Log Message

Yet another unreviewed fix after r139431.

* Scripts/run-launcher: Pass the arguments to `jhbuild-wrapper' in
the correct order.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (139448 => 139449)


--- trunk/Tools/ChangeLog	2013-01-11 16:39:12 UTC (rev 139448)
+++ trunk/Tools/ChangeLog	2013-01-11 16:49:25 UTC (rev 139449)
@@ -1,3 +1,10 @@
+2013-01-11  Raphael Kubo da Costa  <[email protected]>
+
+        Yet another unreviewed fix after r139431.
+
+        * Scripts/run-launcher: Pass the arguments to `jhbuild-wrapper' in
+        the correct order.
+
 2013-01-11  Dan Carney  <[email protected]>
 
         [chromium] move some whitespace and resize related methods to TestRunner library

Modified: trunk/Tools/Scripts/run-launcher (139448 => 139449)


--- trunk/Tools/Scripts/run-launcher	2013-01-11 16:39:12 UTC (rev 139448)
+++ trunk/Tools/Scripts/run-launcher	2013-01-11 16:49:25 UTC (rev 139449)
@@ -70,10 +70,9 @@
             unshift(@ARGV, catdir($launcherPath, "Programs", "GtkLauncher"));
         }
         $launcherPath = catdir(sourceDir(), "Tools", "jhbuild", "jhbuild-wrapper");
-        unshift(@ARGV, '--gtk');
-        unshift(@ARGV, 'run');
+        unshift(@ARGV, ("--gtk", "run"));
     }
-    
+
     if (isEfl()) {
         if (isWK2()) {
             unshift(@ARGV, catdir($launcherPath, "bin", "MiniBrowser"));
@@ -81,10 +80,9 @@
             unshift(@ARGV, catdir($launcherPath, "bin", "EWebLauncher"));
         }
         $launcherPath = catdir(sourceDir(), "Tools", "jhbuild", "jhbuild-wrapper");
-        unshift(@ARGV, '--efl');
-        unshift(@ARGV, 'run');
+        unshift(@ARGV, ("--efl", "run"));
     }
-    
+
     if (isWx()) {
         if (isDarwin()) {
             $launcherPath = catdir($launcherPath, 'wxBrowser.app', 'Contents', 'MacOS', 'wxBrowser');
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to