| Index: pylib/gyp/common.py
|
| diff --git a/pylib/gyp/common.py b/pylib/gyp/common.py
|
| index 19f1cf4a53a90d85e969ec22bc1c9b27505b272c..3b10d508c4bc93299ad78d09be07bad251474866 100644
|
| --- a/pylib/gyp/common.py
|
| +++ b/pylib/gyp/common.py
|
| @@ -408,9 +408,9 @@ def GetFlavor(params):
|
|
|
|
|
| def CopyTool(flavor, out_path):
|
| - """Finds (mac|sun|win)_tool.gyp in the gyp directory and copies it
|
| + """Finds (aix|mac|sun|win)_tool.gyp in the gyp directory and copies it
|
| to |out_path|."""
|
| - prefix = { 'solaris': 'sun', 'mac': 'mac', 'win': 'win' }.get(flavor, None)
|
| + prefix = { 'aix': 'aix', 'solaris': 'sun', 'mac': 'mac', 'win': 'win' }.get(flavor, None)
|
| if not prefix:
|
| return
|
|
|
|
|