From e6484c2c1193d8067e01477497b7dfbb4d8ccab3 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Tue, 9 Oct 2018 10:36:52 -0400 Subject: [PATCH] build: restore js2c direct dependency on config.gypi PR-URL: https://github.com/nodejs/node/pull/23355 Fixes: https://github.com/nodejs/node/issues/23352 Reviewed-By: Anna Henningsen Reviewed-By: Joyee Cheung Reviewed-By: Richard Lau Reviewed-By: Daniel Bevenius --- node.gyp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node.gyp b/node.gyp index 882f8f8aafc9a6..910489d3ad5ce5 100644 --- a/node.gyp +++ b/node.gyp @@ -655,6 +655,7 @@ 'process_outputs_as_sources': 1, 'inputs': [ '<@(library_files)', + 'config.gypi', 'tools/check_macros.py' ], 'outputs': [ @@ -677,7 +678,7 @@ 'action': [ 'python', 'tools/js2c.py', '<@(_outputs)', - '<@(_inputs)', 'config.gypi', + '<@(_inputs)', ], }, ],