diff options
author | Bert Belder <bertbelder@gmail.com> | 2012-06-02 16:01:18 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2012-06-02 16:06:00 +0200 |
commit | 3b6a00b664afdc7695ddddefc637b1fbebf94fc6 (patch) | |
tree | 6508869c11f05e14b7633432fbb373dc98b86bbb /deps/v8 | |
parent | e0f5d8e86d630be8e0fd3386273472d829b44608 (diff) | |
download | node-3b6a00b664afdc7695ddddefc637b1fbebf94fc6.tar.gz |
Unbreak the Windows build
The v8 team apparently decided that all build products should go
into ./build/«type», and updated their common.gypi file to do so.
Unfortunately v8's common.gypi is only used for some targets. All
the other targets would still look in the old place to find their
their dependencies, which effectively broke the build.
In the long run it would be good for node to send all build
output to ./build too, on all platforms.
Diffstat (limited to 'deps/v8')
-rw-r--r-- | deps/v8/build/common.gypi | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/deps/v8/build/common.gypi b/deps/v8/build/common.gypi index 72f7d354a..bc366d9ad 100644 --- a/deps/v8/build/common.gypi +++ b/deps/v8/build/common.gypi @@ -239,7 +239,6 @@ 'WIN32', ], 'msvs_configuration_attributes': { - 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 'CharacterSet': '1', }, |