| Index: Tools/Scripts/webkitpy/common/host.py
|
| diff --git a/Tools/Scripts/webkitpy/common/host.py b/Tools/Scripts/webkitpy/common/host.py
|
| index 9b62d86148e866ec59c2cc5cb0b1951cc76b36c0..a8df7a5f929efd7e58f10cd0e8bd003496763bef 100644
|
| --- a/Tools/Scripts/webkitpy/common/host.py
|
| +++ b/Tools/Scripts/webkitpy/common/host.py
|
| @@ -77,7 +77,7 @@ class Host(SystemHost):
|
| os.environ['LC_MESSAGES'] = 'en_US.UTF-8'
|
| os.environ['LC_ALL'] = ''
|
|
|
| - # FIXME: This is a horrible, horrible hack for ChromiumWin and should be removed.
|
| + # FIXME: This is a horrible, horrible hack for WinPort and should be removed.
|
| # Maybe this belongs in SVN in some more generic "find the svn binary" codepath?
|
| # Or possibly Executive should have a way to emulate shell path-lookups?
|
| # FIXME: Unclear how to test this, since it currently mutates global state on SVN.
|
| @@ -87,7 +87,7 @@ class Host(SystemHost):
|
| except OSError, e:
|
| try:
|
| self.executive.run_command(['svn.bat', 'help'])
|
| - # Chromium Win uses the depot_tools package, which contains a number
|
| + # The Win port uses the depot_tools package, which contains a number
|
| # of development tools, including Python and svn. Instead of using a
|
| # real svn executable, depot_tools indirects via a batch file, called
|
| # svn.bat. This batch file allows depot_tools to auto-update the real
|
| @@ -107,7 +107,7 @@ class Host(SystemHost):
|
| except OSError, e:
|
| try:
|
| self.executive.run_command(['git.bat', 'help'])
|
| - # Chromium Win uses the depot_tools package, which contains a number
|
| + # The Win port uses the depot_tools package, which contains a number
|
| # of development tools, including Python and git. Instead of using a
|
| # real git executable, depot_tools indirects via a batch file, called
|
| # git.bat. This batch file allows depot_tools to auto-update the real
|
|
|