diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-25 14:57:53 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-27 10:35:30 +0000 |
commit | 4cd96710785eb05abeff1f281878655118d4a7dd (patch) | |
tree | f2e15210fa7057df398c6e20ecc51f1d747a12ab /bitbake/lib/bb/utils.py | |
parent | 0a434ac10158e2011d41a1189e65e9474b1672be (diff) | |
download | poky-4cd96710785eb05abeff1f281878655118d4a7dd.tar.gz |
bitbake: Update users of getVar/setVar to use the data store functions directly
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r-- | bitbake/lib/bb/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 521a0683fc..a26635a19a 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -562,7 +562,7 @@ def filter_environment(good_vars): | |||
562 | 562 | ||
563 | def create_interactive_env(d): | 563 | def create_interactive_env(d): |
564 | for k in preserved_envvars_exported_interactive(): | 564 | for k in preserved_envvars_exported_interactive(): |
565 | os.setenv(k, bb.data.getVar(k, d, True)) | 565 | os.setenv(k, d.getVar(k, True)) |
566 | 566 | ||
567 | def approved_variables(): | 567 | def approved_variables(): |
568 | """ | 568 | """ |
@@ -601,9 +601,9 @@ def build_environment(d): | |||
601 | """ | 601 | """ |
602 | import bb.data | 602 | import bb.data |
603 | for var in bb.data.keys(d): | 603 | for var in bb.data.keys(d): |
604 | export = bb.data.getVarFlag(var, "export", d) | 604 | export = d.getVarFlag(var, "export") |
605 | if export: | 605 | if export: |
606 | os.environ[var] = bb.data.getVar(var, d, True) or "" | 606 | os.environ[var] = d.getVar(var, True) or "" |
607 | 607 | ||
608 | def remove(path, recurse=False): | 608 | def remove(path, recurse=False): |
609 | """Equivalent to rm -f or rm -rf""" | 609 | """Equivalent to rm -f or rm -rf""" |