From 4ec06f82efc790421e0ad6ce0d45088d3249b1bd Mon Sep 17 00:00:00 2001 From: ignisf Date: Tue, 10 Jun 2014 23:54:32 +0300 Subject: [PATCH] Link v8 dependency dirs to submodule directories --- patches/link-dependencies.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 patches/link-dependencies.patch diff --git a/patches/link-dependencies.patch b/patches/link-dependencies.patch new file mode 100644 index 0000000..09c01e5 --- /dev/null +++ b/patches/link-dependencies.patch @@ -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 )