Browse Source

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.
v0.11.5-release
Ben Noordhuis 11 years ago
parent
commit
4b279f0092
  1. 17
      node.gyp
  2. 0
      src/notrace_macros.py

17
node.gyp

@ -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

0
src/macros.py → src/notrace_macros.py

Loading…
Cancel
Save