2020-01-06 19:34:02 +00:00
|
|
|
From a560ff12ff44d9732ce325ca4bcde6e536fe3ed0 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
|
2020-01-06 19:34:02 +00:00
|
|
|
index 0947300f24028d00bcfb79b38d96bded136228e3..5d4f88a705053fbdd6b56ec85e9997670c6a69c5 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
|
|
|
|