node.gyp: include the config.gypi file in the js2c inputs list

pull/24503/head
Nathan Rajlich 2012-03-14 08:34:44 -07:00
parent bea2e15864
commit 95fd517431
1 changed files with 3 additions and 3 deletions

View File

@ -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'
],
}]