Reviewers: ulan,
Description:
Set the gyp DEPTH variable as relative path.
After r18439, it's an absolute variable which confuses gy
LOG=n
[email protected]
BUG=none
Please review this at https://codereview.chromium.org/119293004/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M build/gyp_v8
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.
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.