diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-27 09:15:20 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-27 09:15:20 +0000 |
commit | edd988ecb3028ce5f5e3f804bdbda5b673ba4053 (patch) | |
tree | b5b19bd84c160550f443abb4aaf67d7d9239ccd6 /bitbake | |
parent | 1e95d39948bff9d890bcf275cadbf98ecffec512 (diff) | |
download | openembedded-core-edd988ecb3028ce5f5e3f804bdbda5b673ba4053.tar.gz openembedded-core-edd988ecb3028ce5f5e3f804bdbda5b673ba4053.tar.bz2 openembedded-core-edd988ecb3028ce5f5e3f804bdbda5b673ba4053.zip |
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.py | 2 |
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) |