Title: [125825] trunk/Tools
Revision
125825
Author
[email protected]
Date
2012-08-16 16:35:11 -0700 (Thu, 16 Aug 2012)

Log Message

Unreviewed warning fix, sys.argv is a python construct.

* Scripts/update-webkitefl-libs:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (125824 => 125825)


--- trunk/Tools/ChangeLog	2012-08-16 23:27:28 UTC (rev 125824)
+++ trunk/Tools/ChangeLog	2012-08-16 23:35:11 UTC (rev 125825)
@@ -1,3 +1,9 @@
+2012-08-16  Gustavo Noronha Silva  <[email protected]>
+
+        Unreviewed warning fix, sys.argv is a python construct.
+
+        * Scripts/update-webkitefl-libs:
+
 2012-08-16  Dirk Pranke  <[email protected]>
 
         NRWT cutting off the output from LayoutTest run under Valgrind

Modified: trunk/Tools/Scripts/update-webkitefl-libs (125824 => 125825)


--- trunk/Tools/Scripts/update-webkitefl-libs	2012-08-16 23:27:28 UTC (rev 125824)
+++ trunk/Tools/Scripts/update-webkitefl-libs	2012-08-16 23:35:11 UTC (rev 125825)
@@ -20,4 +20,4 @@
 use webkitdirs;
 
 my $scriptsDir = relativeScriptsDir();
-system("perl", "$scriptsDir/update-webkit-libs-jhbuild", "--efl", sys.argv) == 0 or die $!;
+system("perl", "$scriptsDir/update-webkit-libs-jhbuild", "--efl") == 0 or die $!;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to