diff options
Diffstat (limited to 'mesalib/common.py')
-rw-r--r-- | mesalib/common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesalib/common.py b/mesalib/common.py index 6130e6110..157873f66 100644 --- a/mesalib/common.py +++ b/mesalib/common.py @@ -15,6 +15,8 @@ import SCons.Script.SConscript # Defaults
host_platform = _platform.system().lower()
+if host_platform.startswith('cygwin'):
+ host_platform = 'cygwin'
# Search sys.argv[] for a "platform=foo" argument since we don't have
# an 'env' variable at this point.
|