From 4b279f00921b251f58ff7213c6a1518c66281747 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 24 Jul 2013 12:53:28 +0200 Subject: [PATCH] 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. --- node.gyp | 17 ++++++++--------- src/{macros.py => notrace_macros.py} | 0 2 files changed, 8 insertions(+), 9 deletions(-) rename src/{macros.py => notrace_macros.py} (100%) diff --git a/node.gyp b/node.gyp index b4d5f289fd..a6f725648e 100644 --- a/node.gyp +++ b/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 diff --git a/src/macros.py b/src/notrace_macros.py similarity index 100% rename from src/macros.py rename to src/notrace_macros.py