35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 3775a1669913db89c042859fd87c349fb5459e55 Mon Sep 17 00:00:00 2001
|
|
From: Zuzana Svetlikova <zsvetlik@redhat.com>
|
|
Date: Thu, 27 Apr 2017 14:25:42 +0200
|
|
Subject: [PATCH 1/2] Disable running gyp on shared deps
|
|
|
|
---
|
|
Makefile | 7 +++----
|
|
1 file changed, 3 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 231948c15b95bdcdf5cbe2ada9dcb54207cde1cc..ce48995b92feb55d2c307296f3899937d60b16ae 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -109,14 +109,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 \
|
|
- deps/v8/gypfiles/features.gypi deps/v8/gypfiles/v8.gyp node.gyp \
|
|
- config.gypi
|
|
+out/Makefile: common.gypi deps/http_parser/http_parser.gyp \
|
|
+ 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
|
|
@if [ -x config.status ]; then \
|
|
./config.status; \
|
|
--
|
|
2.18.0
|
|
|