From 95fd517431c46e2083dd16d031eb79371b67da79 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Wed, 14 Mar 2012 08:34:44 -0700 Subject: [PATCH] node.gyp: include the config.gypi file in the js2c inputs list --- node.gyp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node.gyp b/node.gyp index 8435d92f7e8..0829cd69c4e 100644 --- a/node.gyp +++ b/node.gyp @@ -219,8 +219,8 @@ 'action_name': 'node_js2c', 'inputs': [ - './tools/js2c.py', '<@(library_files)', + './config.gypi', ], 'outputs': [ @@ -237,14 +237,14 @@ 'python', 'tools/js2c.py', '<@(_outputs)', - '<@(library_files)' + '<@(_inputs)', ], }, { # No Dtrace 'action': [ 'python', 'tools/js2c.py', '<@(_outputs)', - '<@(library_files)', + '<@(_inputs)', 'src/macros.py' ], }]