summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-27 09:15:20 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-27 09:15:20 +0000
commitedd988ecb3028ce5f5e3f804bdbda5b673ba4053 (patch)
treeb5b19bd84c160550f443abb4aaf67d7d9239ccd6 /bitbake
parent1e95d39948bff9d890bcf275cadbf98ecffec512 (diff)
downloadopenembedded-core-contrib-edd988ecb3028ce5f5e3f804bdbda5b673ba4053.tar.gz
data_smart.py: micro optimisation from bitbake trunk
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@963 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 054b852200..d63fdde3ef 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -78,7 +78,7 @@ class DataSmart:
if varname and varname in self.expand_cache:
return self.expand_cache[varname]
- while s.find('$') != -1:
+ while s.find('${') != -1:
olds = s
try:
s = __expand_var_regexp__.sub(var_sub, s)