2022-07-27 19:00:21 +00:00
|
|
|
From dd53d0b72ade3b5b391cb99d7393658b7e24c91c 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
|
2022-06-07 17:24:16 +00:00
|
|
|
Subject: [PATCH 1/2] Disable running gyp on shared deps
|
2017-03-22 18:19:11 +00:00
|
|
|
|
2022-05-31 11:30:35 +00:00
|
|
|
Signed-off-by: rpm-build <rpm-build>
|
2017-03-22 18:19:11 +00:00
|
|
|
---
|
2022-05-31 11:30:35 +00:00
|
|
|
Makefile | 2 +-
|
|
|
|
node.gyp | 17 -----------------
|
|
|
|
2 files changed, 1 insertion(+), 18 deletions(-)
|
2017-03-22 18:19:11 +00:00
|
|
|
|
|
|
|
diff --git a/Makefile b/Makefile
|
2022-07-27 19:00:21 +00:00
|
|
|
index e0d756fea3ac356041ecdea678c4628fa8b76de2..c90bfa76231397ea2328613d6335cef0ac784f0f 100644
|
2017-03-22 18:19:11 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2022-05-31 11:30:35 +00:00
|
|
|
@@ -147,7 +147,7 @@ with-code-cache test-code-cache:
|
2021-01-04 20:18:59 +00:00
|
|
|
$(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
|
2022-05-31 11:30:35 +00:00
|
|
|
diff --git a/node.gyp b/node.gyp
|
2022-07-27 19:00:21 +00:00
|
|
|
index e8227bb22a39fe75eab9c66ad85e1a3579d7628d..6db3c5d1783a3c1b9e2ae283d97b78c531ba862a 100644
|
2022-05-31 11:30:35 +00:00
|
|
|
--- a/node.gyp
|
|
|
|
+++ b/node.gyp
|
2022-07-27 19:00:21 +00:00
|
|
|
@@ -429,23 +429,6 @@
|
2022-05-31 11:30:35 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
- }, {
|
|
|
|
- 'variables': {
|
|
|
|
- 'opensslconfig_internal': '<(obj_dir)/deps/openssl/openssl.cnf',
|
2022-07-11 13:36:39 +00:00
|
|
|
- 'opensslconfig': './deps/openssl/nodejs-openssl.cnf',
|
2022-05-31 11:30:35 +00:00
|
|
|
- },
|
|
|
|
- 'actions': [
|
|
|
|
- {
|
|
|
|
- 'action_name': 'reset_openssl_cnf',
|
|
|
|
- 'inputs': [ '<(opensslconfig)', ],
|
|
|
|
- 'outputs': [ '<(opensslconfig_internal)', ],
|
|
|
|
- 'action': [
|
|
|
|
- 'python', 'tools/copyfile.py',
|
2022-07-11 13:36:39 +00:00
|
|
|
- '<(opensslconfig)',
|
|
|
|
- '<(opensslconfig_internal)',
|
2022-05-31 11:30:35 +00:00
|
|
|
- ],
|
|
|
|
- },
|
|
|
|
- ],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}, # node_core_target_name
|
2017-03-22 18:19:11 +00:00
|
|
|
--
|
2022-07-11 13:36:39 +00:00
|
|
|
2.36.1
|
2018-04-26 14:32:10 +00:00
|
|
|
|