summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/sw/xlib
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-11-09 12:31:11 -0800
committerVinson Lee <vlee@vmware.com>2010-11-09 12:31:11 -0800
commit520140a6c9b3da38673946a84ed0c3d8864025e1 (patch)
treed6c7a8539454c80a143210af508c44a7c9dd0894 /src/gallium/winsys/sw/xlib
parent63c3e3a3dc73f8a72e0d08ac4453df57bccdfdb9 (diff)
winsys/xlib: Add cygwin to SConscript.
Fixes SCons NameError exception on Cygwin.
Diffstat (limited to 'src/gallium/winsys/sw/xlib')
-rw-r--r--src/gallium/winsys/sw/xlib/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/sw/xlib/SConscript b/src/gallium/winsys/sw/xlib/SConscript
index 2af6153b4c7..df01a9ec2bf 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()