2020-02-14 14:35:51 +00:00
|
|
|
From 2213cf773b7cf503807397aac79f10d6690a6640 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
|
2020-02-14 14:35:51 +00:00
|
|
|
Subject: [PATCH 1/2] 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-02-14 14:35:51 +00:00
|
|
|
index 05eaa73abbe0c6c651bdf446e3678b92700d57c3..829c4c7c9f8a2132def8767a243cb7160a85d2b2 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
|
|
|
--
|
2020-02-06 15:51:27 +00:00
|
|
|
2.24.1
|
2018-04-26 14:32:10 +00:00
|
|
|
|