2019-10-28 17:34:25 +00:00
|
|
|
From 80542232e5b9c3ede63b7a70c1077497e130da81 Mon Sep 17 00:00:00 2001
|
2017-03-22 18:19:11 +00:00
|
|
|
From: Zuzana Svetlikova <zsvetlik@redhat.com>
|
2017-06-28 09:00:13 +00:00
|
|
|
Date: Thu, 27 Apr 2017 14:25:42 +0200
|
2019-08-15 15:18:11 +00:00
|
|
|
Subject: [PATCH 1/3] Disable running gyp on shared deps
|
2017-03-22 18:19:11 +00:00
|
|
|
|
|
|
|
---
|
2019-08-15 15:18:11 +00:00
|
|
|
Makefile | 6 +++---
|
|
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
2017-03-22 18:19:11 +00:00
|
|
|
|
|
|
|
diff --git a/Makefile b/Makefile
|
2019-10-28 17:34:25 +00:00
|
|
|
index 0a5177d1c3e7d6769535d79e063f987157a30f4d..1f3dd0abe4031defb5b7cc817b12886bdea002c7 100644
|
2017-03-22 18:19:11 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2019-10-28 17:34:25 +00:00
|
|
|
@@ -141,9 +141,9 @@ test-code-cache: with-code-cache
|
2019-04-23 18:07:13 +00:00
|
|
|
echo "'test-code-cache' target is a noop"
|
2017-03-22 18:19:11 +00:00
|
|
|
|
2019-04-23 18:07:13 +00:00
|
|
|
out/Makefile: config.gypi common.gypi node.gyp \
|
2019-08-15 15:18:11 +00:00
|
|
|
- deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp \
|
|
|
|
- tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \
|
|
|
|
- tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp
|
2019-04-23 18:07:13 +00:00
|
|
|
+ deps/http_parser/http_parser.gyp \
|
2019-08-15 15:18:11 +00:00
|
|
|
+ tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \
|
|
|
|
+ tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp
|
2017-03-22 18:19:11 +00:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
|
|
|
|
2019-10-28 17:34:25 +00:00
|
|
|
# node_version.h is listed because the N-API version is taken from there
|
2017-03-22 18:19:11 +00:00
|
|
|
--
|
2019-10-28 17:34:25 +00:00
|
|
|
2.23.0
|
2018-04-26 14:32:10 +00:00
|
|
|
|