diff options
author | Ross Burton <ross.burton@intel.com> | 2012-08-21 17:16:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-22 13:59:56 +0100 |
commit | 980d658f3f1e6c5b459f741385533a11d35009ca (patch) | |
tree | 9348cd19d9fbe4937cb77a759ca36f6ecbed9152 /bitbake | |
parent | 49bc007c80e429090c4db51e30c5ce27e8a72558 (diff) | |
download | poky-980d658f3f1e6c5b459f741385533a11d35009ca.tar.gz |
bitbake: data_smart: skip all interal (underscored) flags in getVarFlags
(Bitbake rev: 9f631e29a2eebb96a8291839dd8b39aa9126a10e)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 dbfcefb578..f5f3b13a73 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
@@ -379,7 +379,7 @@ class DataSmart(MutableMapping): | |||
379 | 379 | ||
380 | if local_var: | 380 | if local_var: |
381 | for i in local_var: | 381 | for i in local_var: |
382 | if i == "_content": | 382 | if i.startswith("_"): |
383 | continue | 383 | continue |
384 | flags[i] = local_var[i] | 384 | flags[i] = local_var[i] |
385 | 385 | ||