2021-05-04 21:10:37 +00:00
|
|
|
From 3aebb3eb39fd81c1355dffef8617a5028bc3f622 Mon Sep 17 00:00:00 2001
|
2017-03-22 18:19:11 +00:00
|
|
|
From: Zuzana Svetlikova <zsvetlik@redhat.com>
|
2020-04-17 11:10:35 +00:00
|
|
|
Date: Fri, 17 Apr 2020 12:59:44 +0200
|
2021-05-04 21:10:37 +00:00
|
|
|
Subject: [PATCH 1/2] Disable running gyp on shared deps
|
2017-03-22 18:19:11 +00:00
|
|
|
|
|
|
|
---
|
2020-04-17 11:10:35 +00:00
|
|
|
Makefile | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2017-03-22 18:19:11 +00:00
|
|
|
|
|
|
|
diff --git a/Makefile b/Makefile
|
2021-05-04 21:10:37 +00:00
|
|
|
index 50d6795bc349035ae6b46363e6a05fed59dd2cf9..ddf127a0c5d990e08a2d3dfe78d1d611ed51f657 100644
|
2017-03-22 18:19:11 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2021-04-29 13:41:42 +00:00
|
|
|
@@ -137,11 +137,11 @@ endif
|
2021-01-04 20:18:59 +00:00
|
|
|
.PHONY: test-code-cache
|
|
|
|
with-code-cache test-code-cache:
|
|
|
|
$(warning '$@' 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 \
|
2020-02-25 16:22:47 +00:00
|
|
|
- deps/uv/uv.gyp deps/llhttp/llhttp.gyp deps/zlib/zlib.gyp \
|
|
|
|
+ deps/llhttp/llhttp.gyp \
|
2020-04-17 11:10:35 +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
|
2021-01-04 20:18:59 +00:00
|
|
|
|
|
|
|
# node_version.h is listed because the N-API version is taken from there
|
2017-03-22 18:19:11 +00:00
|
|
|
--
|
2021-04-20 13:35:18 +00:00
|
|
|
2.31.1
|
2018-04-26 14:32:10 +00:00
|
|
|
|