Title: [157995] trunk/Tools
Revision
157995
Author
[email protected]
Date
2013-10-25 01:32:50 -0700 (Fri, 25 Oct 2013)

Log Message

Build fix after r157815. Don't resolve the path from webkit_base. Use the relative path as is.

* Scripts/webkitpy/port/base.py:
(Port.repository_paths):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (157994 => 157995)


--- trunk/Tools/ChangeLog	2013-10-25 08:31:08 UTC (rev 157994)
+++ trunk/Tools/ChangeLog	2013-10-25 08:32:50 UTC (rev 157995)
@@ -1,3 +1,10 @@
+2013-10-25  Ryosuke Niwa  <[email protected]>
+
+        Build fix after r157815. Don't resolve the path from webkit_base. Use the relative path as is.
+
+        * Scripts/webkitpy/port/base.py:
+        (Port.repository_paths):
+
 2013-10-25  Jer Noble  <[email protected]>
 
         [WTF] Add a multiplication operator (and a few others) to MediaTime

Modified: trunk/Tools/Scripts/webkitpy/port/base.py (157994 => 157995)


--- trunk/Tools/Scripts/webkitpy/port/base.py	2013-10-25 08:31:08 UTC (rev 157994)
+++ trunk/Tools/Scripts/webkitpy/port/base.py	2013-10-25 08:32:50 UTC (rev 157995)
@@ -1092,7 +1092,7 @@
         # where turnk isn't checked out as a whole.
         repository_paths = [('WebKit', self.layout_tests_dir())]
         if self.get_option('additional_repository_name') and self.get_option('additional_repository_path'):
-            repository_paths += [(self._options.additional_repository_name, self.path_from_webkit_base(self._options.additional_repository_path))]
+            repository_paths += [(self._options.additional_repository_name, self._options.additional_repository_path)]
         return repository_paths
 
     _WDIFF_DEL = '##WDIFF_DEL##'
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to