mirror of https://github.com/nodejs/node.git
node.gyp: include the config.gypi file in the js2c inputs list
parent
bea2e15864
commit
95fd517431
6
node.gyp
6
node.gyp
|
@ -219,8 +219,8 @@
|
||||||
'action_name': 'node_js2c',
|
'action_name': 'node_js2c',
|
||||||
|
|
||||||
'inputs': [
|
'inputs': [
|
||||||
'./tools/js2c.py',
|
|
||||||
'<@(library_files)',
|
'<@(library_files)',
|
||||||
|
'./config.gypi',
|
||||||
],
|
],
|
||||||
|
|
||||||
'outputs': [
|
'outputs': [
|
||||||
|
@ -237,14 +237,14 @@
|
||||||
'python',
|
'python',
|
||||||
'tools/js2c.py',
|
'tools/js2c.py',
|
||||||
'<@(_outputs)',
|
'<@(_outputs)',
|
||||||
'<@(library_files)'
|
'<@(_inputs)',
|
||||||
],
|
],
|
||||||
}, { # No Dtrace
|
}, { # No Dtrace
|
||||||
'action': [
|
'action': [
|
||||||
'python',
|
'python',
|
||||||
'tools/js2c.py',
|
'tools/js2c.py',
|
||||||
'<@(_outputs)',
|
'<@(_outputs)',
|
||||||
'<@(library_files)',
|
'<@(_inputs)',
|
||||||
'src/macros.py'
|
'src/macros.py'
|
||||||
],
|
],
|
||||||
}]
|
}]
|
||||||
|
|
Loading…
Reference in New Issue