| Index: pylib/gyp/common.py
|
| diff --git a/pylib/gyp/common.py b/pylib/gyp/common.py
|
| index b6875e43efcbc40a14eb6a258626455e7ed91054..5df650029c08b8c1dd08e73ea3ab7208b65c3d6a 100644
|
| --- a/pylib/gyp/common.py
|
| +++ b/pylib/gyp/common.py
|
| @@ -137,7 +137,7 @@ def RelativePath(path, relative_to):
|
| # relative_to.
|
|
|
| # Convert to normalized (and therefore absolute paths).
|
| - path = os.path.realpath(path)
|
| + path = os.path.abspath(path)
|
| relative_to = os.path.realpath(relative_to)
|
|
|
| # On Windows, we can't create a relative path to a different drive, so just
|
|
|