diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-07-24 12:53:28 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-07-24 21:49:18 +0200 |
commit | 4b279f00921b251f58ff7213c6a1518c66281747 (patch) | |
tree | 637596464ba84cae370ece7641526cba288ec819 /node.gyp | |
parent | d8240769c6593e4dd6cff3b9e41d35f869c83eed (diff) | |
download | nodejs-4b279f00921b251f58ff7213c6a1518c66281747.tar.gz nodejs-4b279f00921b251f58ff7213c6a1518c66281747.tar.bz2 nodejs-4b279f00921b251f58ff7213c6a1518c66281747.zip |
src: rename macros.py to notrace_macros.py
This incarnation of macros.py is only used to disable the (d)trace
macros. Rename it so it better reflects its purpose. A new macros.py
will be added in a follow-up commit.
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -378,19 +378,18 @@ ' and node_use_etw=="false"' ' and node_use_systemtap=="false"', { - 'inputs': ['src/macros.py'] - } - ], + 'inputs': ['src/notrace_macros.py'] + }], [ 'node_use_perfctr=="false"', { 'inputs': [ 'src/perfctr_macros.py' ] }] ], - 'action': [ - '<(python)', - 'tools/js2c.py', - '<@(_outputs)', - '<@(_inputs)', - ], + 'action': [ + '<(python)', + 'tools/js2c.py', + '<@(_outputs)', + '<@(_inputs)', + ], }, ], }, # end node_js2c |