diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-05-08 17:01:15 (GMT) |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-05-08 17:01:18 (GMT) |
commit | f9615d074c69c96ac1c763e2a9b98d4267906a07 (patch) | |
tree | 4c1a11176fbe65cd3eee34b748aad31ab8034170 | |
parent | d45ed4fdaa5ca9335145ee6f88f765a7ae0a47f3 (diff) | |
download | Ninja-f9615d074c69c96ac1c763e2a9b98d4267906a07.zip Ninja-f9615d074c69c96ac1c763e2a9b98d4267906a07.tar.gz Ninja-f9615d074c69c96ac1c763e2a9b98d4267906a07.tar.bz2 |
Fix bootstrap on OS X.
This was broken in 4c552c2c3cbc07acce9c1a379fee054a3f680100.
-rw-r--r-- | platform_helper.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform_helper.py b/platform_helper.py index cd7298b..97827c3 100644 --- a/platform_helper.py +++ b/platform_helper.py @@ -18,7 +18,8 @@ import sys def platforms(): - return ['linux', 'freebsd', 'openbsd', 'solaris', 'sunos5', 'mingw', 'msvc'] + return ['linux', 'darwin', 'freebsd', 'openbsd', 'solaris', 'sunos5', + 'mingw', 'msvc'] class Platform( object ): def __init__( self, platform): |