Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: build/gyp_v8

Issue 119293004: Set the gyp DEPTH variable as relative path. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/gyp_v8
diff --git a/build/gyp_v8 b/build/gyp_v8
index 7874d1444eb639bf7f2ff417ef1e76cfee7ca95c..ddf88ce06873b370c7037e9aef1bb89fe1d78cdb 100755
--- a/build/gyp_v8
+++ b/build/gyp_v8
@@ -145,7 +145,7 @@ if __name__ == '__main__':
args.append('--no-circular-check')
# Set the GYP DEPTH variable to the root of the V8 project.
- args.append('--depth=' + v8_root)
+ args.append('--depth=' + os.path.relpath(v8_root))
# If V8_GYP_SYNTAX_CHECK is set to 1, it will invoke gyp with --check
# to enfore syntax checking.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698