2022-09-14 19:44:38 +00:00
|
|
|
From c30f7d6e470a9ef8eafb10b2997889231180754e 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-09-14 19:44:38 +00:00
|
|
|
index 9c01f8f244ee1904f223d01e31ecfeffc03ea191..133a3d0fcbd22c2dde85a092f84708ddabf8b5f3 100644
|
2017-03-22 18:19:11 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2022-09-14 19:44:38 +00:00
|
|
|
@@ -148,7 +148,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-09-14 19:44:38 +00:00
|
|
|
index 347d82d2e1e100227e750934532dce29775f1fdf..2419dc739ea0b1d7efaf5096f86383def4162e3c 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-09-14 19:44:38 +00:00
|
|
|
2.37.3
|
2018-04-26 14:32:10 +00:00
|
|
|
|