diff options
| author | Vinson Lee <vlee@vmware.com> | 2010-11-09 12:31:11 -0800 |
|---|---|---|
| committer | Vinson Lee <vlee@vmware.com> | 2010-11-09 12:31:11 -0800 |
| commit | 520140a6c9b3da38673946a84ed0c3d8864025e1 (patch) | |
| tree | d6c7a8539454c80a143210af508c44a7c9dd0894 | |
| parent | 63c3e3a3dc73f8a72e0d08ac4453df57bccdfdb9 (diff) | |
winsys/xlib: Add cygwin to SConscript.
Fixes SCons NameError exception on Cygwin.
| -rw-r--r-- | src/gallium/winsys/sw/xlib/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/sw/xlib/SConscript b/src/gallium/winsys/sw/xlib/SConscript index 2af6153b4c..df01a9ec2b 100644 --- a/src/gallium/winsys/sw/xlib/SConscript +++ b/src/gallium/winsys/sw/xlib/SConscript @@ -4,7 +4,7 @@ Import('*') -if env['platform'] == 'linux': +if env['platform'] in ('cygwin', 'linux'): env = env.Clone() |
