Title: [139433] trunk/Tools
Revision
139433
Author
o...@webkit.org
Date
2013-01-11 05:18:43 -0800 (Fri, 11 Jan 2013)

Log Message

Unreviewed typo fixes after r139431.

* Scripts/run-_javascript_core-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (139432 => 139433)


--- trunk/Tools/ChangeLog	2013-01-11 12:58:53 UTC (rev 139432)
+++ trunk/Tools/ChangeLog	2013-01-11 13:18:43 UTC (rev 139433)
@@ -1,3 +1,9 @@
+2013-01-11  Csaba Osztrogonác  <o...@webkit.org>
+
+        Unreviewed typo fixes after r139431.
+
+        * Scripts/run-_javascript_core-tests:
+
 2013-01-11  Raphael Kubo da Costa  <raphael.kubo.da.co...@intel.com>
 
         [jhbuild] Remove the "run-with-jhbuild" scripts.

Modified: trunk/Tools/Scripts/run-_javascript_core-tests (139432 => 139433)


--- trunk/Tools/Scripts/run-_javascript_core-tests	2013-01-11 12:58:53 UTC (rev 139432)
+++ trunk/Tools/Scripts/run-_javascript_core-tests	2013-01-11 13:18:43 UTC (rev 139433)
@@ -142,13 +142,14 @@
 if (isGtk() || isEfl()) {
     my @jhbuildPrefix = sourceDir() . "/Tools/jhbuild/jhbuild-wrapper";
 
-    if (isEfl())
+    if (isEfl()) {
         push(@jhbuildPrefix, '--efl');
-    elsif (isGtk())
+    } elsif (isGtk()) {
         push(@jhbuildPrefix, '--gtk');
+    }
     push(@jhbuildPrefix, 'run');
 
-    unshift(@jsDriverCmd, $jhbuildPrefix);
+    unshift(@jsDriverCmd, @jhbuildPrefix);
 }
 my $result = system(@jsDriverCmd);
 exit exitStatus($result)  if $result;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to