summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-06-10 10:36:19 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:36 +0100
commit8a9a4748c9cdf06f06e49abbee618550a4cdd796 (patch)
treeaa68091456d64b790556263868a361cc732565f1 /bitbake/lib/bb/parse
parentdabe4a39431e46983b72ee0a314c96ccbadfc16c (diff)
downloadpoky-8a9a4748c9cdf06f06e49abbee618550a4cdd796.tar.gz
Kill the unnecessary setVarFlag debugging message
(Bitbake rev: ef8475796fbab4f76a72bbc106da4c35e3afe2e1) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r--bitbake/lib/bb/parse/ast.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index e7d389e7a5..4eabe5f2a1 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -104,7 +104,6 @@ class DataNode(AstNode):
104 val = groupd["value"] 104 val = groupd["value"]
105 105
106 if 'flag' in groupd and groupd['flag'] != None: 106 if 'flag' in groupd and groupd['flag'] != None:
107 bb.msg.debug(3, bb.msg.domain.Parsing, "setVarFlag(%s, %s, %s, data)" % (key, groupd['flag'], val))
108 bb.data.setVarFlag(key, groupd['flag'], val, data) 107 bb.data.setVarFlag(key, groupd['flag'], val, data)
109 elif groupd["lazyques"]: 108 elif groupd["lazyques"]:
110 assigned = bb.data.getVar("__lazy_assigned", data) or [] 109 assigned = bb.data.getVar("__lazy_assigned", data) or []