diff options
Diffstat (limited to 'community/nodejs-current/dont-run-gyp-files-for-bundled-deps.patch')
-rw-r--r-- | community/nodejs-current/dont-run-gyp-files-for-bundled-deps.patch | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/community/nodejs-current/dont-run-gyp-files-for-bundled-deps.patch b/community/nodejs-current/dont-run-gyp-files-for-bundled-deps.patch index ba521dc4fc..9d16d17ac3 100644 --- a/community/nodejs-current/dont-run-gyp-files-for-bundled-deps.patch +++ b/community/nodejs-current/dont-run-gyp-files-for-bundled-deps.patch @@ -9,13 +9,21 @@ Node.js 7.2.0 --- a/Makefile +++ b/Makefile -@@ -72,8 +72,7 @@ - $(MAKE) -C out BUILDTYPE=Debug V=$(V) - ln -fs out/Debug/$(NODE_EXE) $@ +@@ -121,14 +121,13 @@ with-code-cache: + + .PHONY: test-code-cache + test-code-cache: with-code-cache + $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) code-cache -out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \ - deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \ -+out/Makefile: common.gypi deps/v8/gypfiles/toolchain.gypi \ - deps/v8/gypfiles/features.gypi deps/v8/src/v8.gyp node.gyp \ - config.gypi +- deps/v8/gypfiles/features.gypi deps/v8/gypfiles/v8.gyp node.gyp \ +- config.gypi ++out/Makefile: common.gypi \ ++ deps/v8/gypfiles/toolchain.gypi deps/v8/gypfiles/features.gypi \ ++ deps/v8/gypfiles/v8.gyp node.gyp config.gypi $(PYTHON) tools/gyp_node.py -f make + + config.gypi: configure configure.py + @if [ -x config.status ]; then \ + ./config.status; \ |