| Index: pylib/gyp/msvs_emulation.py
|
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
|
| index 25f351bbabbb740ca534659cb63e0deabbde96b2..3c9fe50a0b0c8dc2614c4ef9d5433782f2aa6a63 100644
|
| --- a/pylib/gyp/msvs_emulation.py
|
| +++ b/pylib/gyp/msvs_emulation.py
|
| @@ -202,8 +202,7 @@ class MsvsSettings(object):
|
|
|
| def AdjustLibraries(self, libraries):
|
| """Strip -l from library if it's specified with that."""
|
| - libs = [lib[2:] if lib.startswith('-l') else lib for lib in libraries]
|
| - return [lib + '.lib' if not lib.endswith('.lib') else lib for lib in libs]
|
| + return [lib[2:] if lib.startswith('-l') else lib for lib in libraries]
|
|
|
| def _GetAndMunge(self, field, path, default, prefix, append, map):
|
| """Retrieve a value from |field| at |path| or return |default|. If
|
|
|