Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: platformsettings.py

Issue 2878053004: Use WindowsPlatformSettings for cywgin (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platformsettings.py
diff --git a/platformsettings.py b/platformsettings.py
index 81cb56c760ec7863220ebd15c3dd7297e62654c5..9037ff8a5d1898c6976f94a8ef1e305497525d8e 100644
--- a/platformsettings.py
+++ b/platformsettings.py
@@ -767,7 +767,7 @@ def _new_platform_settings(system, release):
return _LinuxPlatformSettings()
if system == 'Windows' and release == 'XP':
return _WindowsXpPlatformSettings()
- if system == 'Windows':
+ if system == 'Windows' or system.startswith('CYGWIN'):
return _WindowsPlatformSettings()
if system == 'FreeBSD':
return _FreeBSDPlatformSettings()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698