Title: [121367] trunk/Tools
Revision
121367
Author
dpra...@chromium.org
Date
2012-06-27 14:09:36 -0700 (Wed, 27 Jun 2012)

Log Message

Fix typo introduced in r121363.

Unreviewed, build fix.

* Scripts/webkitpy/layout_tests/port/webkit.py:
(WebKitPort._symbols_string):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (121366 => 121367)


--- trunk/Tools/ChangeLog	2012-06-27 21:05:44 UTC (rev 121366)
+++ trunk/Tools/ChangeLog	2012-06-27 21:09:36 UTC (rev 121367)
@@ -1,3 +1,12 @@
+2012-06-27  Dirk Pranke  <dpra...@chromium.org>
+
+        Fix typo introduced in r121363.
+
+        Unreviewed, build fix.
+
+        * Scripts/webkitpy/layout_tests/port/webkit.py:
+        (WebKitPort._symbols_string):
+
 2012-06-27  Mark Hahnenberg  <mhahnenb...@apple.com>
 
         Moving from committers to reviewers :-)

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py (121366 => 121367)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py	2012-06-27 21:05:44 UTC (rev 121366)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py	2012-06-27 21:09:36 UTC (rev 121367)
@@ -276,7 +276,7 @@
         symbols = ''
         for path_to_module in self._modules_to_search_for_symbols():
             try:
-                symbols += self._executive.run_command([self.nm_command(), path_o_module], error_handler=Executive.ignore_error)
+                symbols += self._executive.run_command([self.nm_command(), path_to_module], error_handler=Executive.ignore_error)
             except OSError, e:
                 _log.warn("Failed to run nm: %s.  Can't determine supported features correctly." % e)
         return symbols
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to