Module: Mesa Branch: master Commit: 520140a6c9b3da38673946a84ed0c3d8864025e1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=520140a6c9b3da38673946a84ed0c3d8864025e1
Author: Vinson Lee <[email protected]> Date: Tue Nov 9 12:31:11 2010 -0800 winsys/xlib: Add cygwin to SConscript. Fixes SCons NameError exception on Cygwin. --- 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 2af6153..df01a9e 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() _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
