Index: build/gyp_chromium |
diff --git a/build/gyp_chromium b/build/gyp_chromium |
index e74af2c8cb060176bbf4e246ee41a1178b37ed95..d9cc4519e3f72a27a9e2cb640cb1063e389bbb64 100755 |
--- a/build/gyp_chromium |
+++ b/build/gyp_chromium |
@@ -13,7 +13,7 @@ import shlex |
import subprocess |
import sys |
-script_dir = os.path.dirname(__file__) |
+script_dir = os.path.realpath(os.path.dirname(__file__)) |
M-A Ruel
2012/07/09 19:32:14
The correct way of doing it is:
script_dir = os.pa
|
chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir)) |
sys.path.insert(0, os.path.join(chrome_src, 'tools', 'gyp', 'pylib')) |