aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-20 15:54:42 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-20 16:09:30 -0700
commitcf1a51eab11f645c95e5fa278221f78c129b9dd1 (patch)
tree71eaa7896d4516dc1e46751009d9aa07a091a9d7
parent5b09e28cb4a2c6c99ad58e71fb803160922a7e1e (diff)
downloadbitbake-cf1a51eab11f645c95e5fa278221f78c129b9dd1.tar.gz
For ${@}, run str() on the result
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--lib/bb/data_smart.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index 9436023b3..1e6501402 100644
--- a/lib/bb/data_smart.py
+++ b/lib/bb/data_smart.py
@@ -65,9 +65,8 @@ class DataSmart:
def python_sub(match):
code = match.group()[3:-1]
codeobj = compile(code.strip(), varname or "<expansion>", "eval")
- s = utils.better_eval(codeobj, {"d": self})
- if isinstance(s, int): s = str(s)
- return s
+ value = utils.better_eval(codeobj, {"d": self})
+ return str(value)
if not isinstance(s, basestring): # sanity check
return s
@@ -80,9 +79,8 @@ class DataSmart:
try:
s = __expand_var_regexp__.sub(var_sub, s)
s = __expand_python_regexp__.sub(python_sub, s)
- if s == olds: break
- if not isinstance(s, basestring): # sanity check
- bb.msg.error(bb.msg.domain.Data, 'expansion of %s returned non-string %s' % (olds, s))
+ if s == olds:
+ break
except KeyboardInterrupt:
raise
except: