| Index: Tools/Scripts/webkitpy/layout_tests/port/mac.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/port/mac.py b/Tools/Scripts/webkitpy/layout_tests/port/mac.py
|
| index 71dc20e0a54369a7d076d06f4b73229a44e4a846..b6f3c8db825dbb205d035c68437cd1c3a4427daa 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/port/mac.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/mac.py
|
| @@ -101,19 +101,19 @@ class MacPort(base.Port):
|
| def _wdiff_missing_message(self):
|
| return 'wdiff is not installed; please install from MacPorts or elsewhere'
|
|
|
| - def _path_to_apache(self):
|
| + def path_to_apache(self):
|
| return '/usr/sbin/httpd'
|
|
|
| - def _path_to_apache_config_file(self):
|
| + def path_to_apache_config_file(self):
|
| return self._filesystem.join(self.layout_tests_dir(), 'http', 'conf', 'apache2-httpd.conf')
|
|
|
| - def _path_to_lighttpd(self):
|
| + def path_to_lighttpd(self):
|
| return self._lighttpd_path('bin', 'lighttpd')
|
|
|
| - def _path_to_lighttpd_modules(self):
|
| + def path_to_lighttpd_modules(self):
|
| return self._lighttpd_path('lib')
|
|
|
| - def _path_to_lighttpd_php(self):
|
| + def path_to_lighttpd_php(self):
|
| return self._lighttpd_path('bin', 'php-cgi')
|
|
|
| def _path_to_driver(self, configuration=None):
|
|
|