| Index: buildbot/buildbot_pnacl.py
|
| diff --git a/buildbot/buildbot_pnacl.py b/buildbot/buildbot_pnacl.py
|
| index 6f99b352fc00f73077ca7bea61fa4f0881825865..1a3dd79c05315bf2150c483ffe1ce892cc828e63 100755
|
| --- a/buildbot/buildbot_pnacl.py
|
| +++ b/buildbot/buildbot_pnacl.py
|
| @@ -9,7 +9,7 @@ import sys
|
| from buildbot_lib import (
|
| BuildContext, BuildStatus, Command, ParseStandardCommandLine,
|
| RemoveSconsBuildDirectories, RunBuild, SetupLinuxEnvironment,
|
| - SetupMacEnvironment, SetupWindowsEnvironment, SCons, Step )
|
| + SetupWindowsEnvironment, SCons, Step )
|
|
|
| sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
| import pynacl.platform
|
| @@ -214,7 +214,8 @@ def Main():
|
| elif context.Windows():
|
| SetupWindowsEnvironment(context)
|
| elif context.Mac():
|
| - SetupMacEnvironment(context)
|
| + # No setup to do for Mac.
|
| + pass
|
| else:
|
| raise Exception('Unsupported platform')
|
|
|
|
|