mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
Link v8 dependency dirs to submodule directories
This commit is contained in:
parent
9eee9157a2
commit
4ec06f82ef
1 changed files with 22 additions and 0 deletions
22
patches/link-dependencies.patch
Normal file
22
patches/link-dependencies.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
diff --git a/Makefile b/Makefile
|
||||
index f49be61..ad551e6 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -463,13 +463,7 @@ gtags.clean:
|
||||
# Dependencies.
|
||||
# Remember to keep these in sync with the DEPS file.
|
||||
dependencies:
|
||||
- svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
|
||||
- --revision 1831
|
||||
- svn checkout --force \
|
||||
- https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
|
||||
- third_party/icu --revision 258359
|
||||
- ( test -d buildtools || \
|
||||
- git clone https://chromium.googlesource.com/chromium/buildtools.git; \
|
||||
- cd buildtools; \
|
||||
- git fetch origin; \
|
||||
- git checkout 5d89977ce55240995d1596fe420b818468f5ec37 )
|
||||
+ ( test -h build/gyp || ln -s ../../gyp build/gyp )
|
||||
+ ( test -d third_party || mkdir third_party )
|
||||
+ ( test -h third_party/icu || ln -s ../../icu46 third_party/icu )
|
||||
+ ( test -h buildtools || ln -s ../buildtools )
|
Loading…
Reference in a new issue