diff options
author | Vinson Lee <vlee@vmware.com> | 2011-03-08 17:59:57 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2011-03-08 17:59:57 -0800 |
commit | c0d3fb4b6c11fd128921c464f753480a137555a0 (patch) | |
tree | 1bc05c1790e71b33a63611a3c0afc58e1333001b /common.py | |
parent | 67f61199c24276e6032774d56d2843c62fe28a2f (diff) |
scons: Fix immediate Python exceptions with SCons on SunOS.
The build still fails.
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ def AddOptions(opts): opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine, allowed_values=('generic', 'ppc', 'x86', 'x86_64'))) opts.Add(EnumOption('platform', 'target platform', host_platform, - allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince', 'darwin', 'embedded', 'cygwin', 'sunos5', 'freebsd8'))) + allowed_values=('linux', 'cell', 'windows', 'winddk', 'wince', 'darwin', 'embedded', 'cygwin', 'sunos', 'freebsd8'))) opts.Add('toolchain', 'compiler toolchain', default_toolchain) opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support', 'no')) opts.Add(BoolOption('llvm', 'use LLVM', default_llvm)) |