summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Script/SConscript.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-02-11 04:43:51 (GMT)
committerSteven Knight <knight@baldmt.com>2003-02-11 04:43:51 (GMT)
commit0f5282ba0d7a5b96c2e5bec6eedb3027aa3fd52a (patch)
treee8911f8120fc06b357b9a9cc893f5de75dd57a93 /src/engine/SCons/Script/SConscript.py
parent39ed6b9c1da2960534d2701c98ab12d53117df43 (diff)
downloadSCons-0f5282ba0d7a5b96c2e5bec6eedb3027aa3fd52a.zip
SCons-0f5282ba0d7a5b96c2e5bec6eedb3027aa3fd52a.tar.gz
SCons-0f5282ba0d7a5b96c2e5bec6eedb3027aa3fd52a.tar.bz2
Disable annotation of nodes with the calling stack frame.
Diffstat (limited to 'src/engine/SCons/Script/SConscript.py')
-rw-r--r--src/engine/SCons/Script/SConscript.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/engine/SCons/Script/SConscript.py b/src/engine/SCons/Script/SConscript.py
index c94ff2c..f2d07fd 100644
--- a/src/engine/SCons/Script/SConscript.py
+++ b/src/engine/SCons/Script/SConscript.py
@@ -239,8 +239,11 @@ def annotate(node):
return
last_text = frame[3]
-SCons.Node.Annotate = annotate
-
+# The following line would cause each Node to be annotated using the
+# above function. Unfortunately, this is a *huge* performance hit, so
+# leave this disabled until we find a more efficient mechanism.
+#SCons.Node.Annotate = annotate
+
def Default(*targets):
global default_targets
if default_targets is None: