Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Rajlich <nathan@tootallnate.net>2012-03-14 19:34:44 +0400
committerNathan Rajlich <nathan@tootallnate.net>2012-03-16 04:12:45 +0400
commit95fd517431c46e2083dd16d031eb79371b67da79 (patch)
treee4fa207b4c750c46dd9aa0b11d5d5716972d25ec /node.gyp
parentbea2e15864fb41c161dd47a0184ae07e83b7ce76 (diff)
node.gyp: include the config.gypi file in the js2c inputs list
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp6
1 files 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'
],
}]