diff options
author | Vinson Lee <[email protected]> | 2011-03-08 17:59:57 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-03-08 17:59:57 -0800 |
commit | c0d3fb4b6c11fd128921c464f753480a137555a0 (patch) | |
tree | 1bc05c1790e71b33a63611a3c0afc58e1333001b /src/gallium/winsys/sw/dri | |
parent | 67f61199c24276e6032774d56d2843c62fe28a2f (diff) |
scons: Fix immediate Python exceptions with SCons on SunOS.
The build still fails.
Diffstat (limited to 'src/gallium/winsys/sw/dri')
-rw-r--r-- | src/gallium/winsys/sw/dri/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/sw/dri/SConscript b/src/gallium/winsys/sw/dri/SConscript index b255d725f95..f8e1fa6cfd8 100644 --- a/src/gallium/winsys/sw/dri/SConscript +++ b/src/gallium/winsys/sw/dri/SConscript @@ -4,7 +4,7 @@ Import('*') -if env['platform'] == 'linux': +if env['platform'] in ('linux', 'sunos'): env = env.Clone() |