diff options
author | Vinson Lee <[email protected]> | 2011-02-23 18:21:14 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-02-23 18:21:14 -0800 |
commit | 100cd214e37265776639c56018270805829ea952 (patch) | |
tree | a000e50d9e4a048ef80adfefba5c3343c33436b5 /src | |
parent | 8fb0ecd0cf4a4d672c0744abb4a9f030b3a17527 (diff) |
scons: Fix Cygwin platform names.
Fixes immediate Python exceptions with SCons on Cygwin.
Diffstat (limited to 'src')
-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 df01a9ec2bf..f6c47411831 100644 --- a/src/gallium/winsys/sw/xlib/SConscript +++ b/src/gallium/winsys/sw/xlib/SConscript @@ -4,7 +4,7 @@ Import('*') -if env['platform'] in ('cygwin', 'linux'): +if env['platform'] in ('cygwin_nt-5.1', 'cygwin_nt-6.1', 'linux'): env = env.Clone() |