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/bin/bitbake-runtask | |
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/bin/bitbake-runtask')
-rwxr-xr-x | bitbake/bin/bitbake-runtask | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake-runtask b/bitbake/bin/bitbake-runtask index 394b4c3ef9..6a0ecdc555 100755 --- a/bitbake/bin/bitbake-runtask +++ b/bitbake/bin/bitbake-runtask | |||
@@ -91,7 +91,7 @@ def register_idle_function(self, function, data): | |||
91 | cooker = bb.cooker.BBCooker(config, register_idle_function, initialenv) | 91 | cooker = bb.cooker.BBCooker(config, register_idle_function, initialenv) |
92 | config_data = cooker.configuration.data | 92 | config_data = cooker.configuration.data |
93 | cooker.status = config_data | 93 | cooker.status = config_data |
94 | cooker.handleCollections(bb.data.getVar("BBFILE_COLLECTIONS", config_data, 1)) | 94 | cooker.handleCollections(config_data.getVar("BBFILE_COLLECTIONS", 1)) |
95 | 95 | ||
96 | fn, cls = bb.cache.Cache.virtualfn2realfn(buildfile) | 96 | fn, cls = bb.cache.Cache.virtualfn2realfn(buildfile) |
97 | buildfile = cooker.matchFile(fn) | 97 | buildfile = cooker.matchFile(fn) |
@@ -108,9 +108,9 @@ if taskname.endswith("_setscene"): | |||
108 | if hashdata: | 108 | if hashdata: |
109 | bb.parse.siggen.set_taskdata(hashdata["hashes"], hashdata["deps"]) | 109 | bb.parse.siggen.set_taskdata(hashdata["hashes"], hashdata["deps"]) |
110 | for h in hashdata["hashes"]: | 110 | for h in hashdata["hashes"]: |
111 | bb.data.setVar("BBHASH_%s" % h, hashdata["hashes"][h], the_data) | 111 | the_data.setVar("BBHASH_%s" % h, hashdata["hashes"][h]) |
112 | for h in hashdata["deps"]: | 112 | for h in hashdata["deps"]: |
113 | bb.data.setVar("BBHASHDEPS_%s" % h, hashdata["deps"][h], the_data) | 113 | the_data.setVar("BBHASHDEPS_%s" % h, hashdata["deps"][h]) |
114 | 114 | ||
115 | ret = 0 | 115 | ret = 0 |
116 | if dryrun != "True": | 116 | if dryrun != "True": |