aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-06-01 23:22:38 +0000
committerPhil Blundell <philb@gnu.org>2004-06-01 23:22:38 +0000
commit316e69b50c94795322f9bebd476024c4850b7e82 (patch)
treeab6fa63153069274cf31c447dd92b06225e58758 /bin
parent27aaaf05d86ae2e438a23fd308b255f0ccbb4d62 (diff)
downloadbitbake-316e69b50c94795322f9bebd476024c4850b7e82.tar.gz
remove bogus length check in expand() to fix meta-opie
Diffstat (limited to 'bin')
-rw-r--r--bin/oe/data.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/oe/data.py b/bin/oe/data.py
index e6b1ee6a6..bbd22a1be 100644
--- a/bin/oe/data.py
+++ b/bin/oe/data.py
@@ -230,9 +230,6 @@ def expand(s, d = _data, varname = None):
olds = s
s = __expand_var_regexp__.sub(var_sub, s)
s = __expand_python_regexp__.sub(python_sub, s)
- if len(s)>2048:
- debug(1, "expanded string too long")
- return s
if s == olds: break
return s