diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-02-15 09:13:03 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-15 16:28:24 +0000 |
commit | 60fd4ff61a4ad240a89d48553002901c10e93178 (patch) | |
tree | fce153fcabf153ee6fca39d48804281e888eb6b1 /meta/classes/buildhistory.bbclass | |
parent | 0ec5ac9453e037f3999f4fa57750f87270bb78d9 (diff) | |
download | openembedded-core-60fd4ff61a4ad240a89d48553002901c10e93178.tar.gz openembedded-core-60fd4ff61a4ad240a89d48553002901c10e93178.tar.bz2 openembedded-core-60fd4ff61a4ad240a89d48553002901c10e93178.zip |
classes/buildhistory: fix for python function parsing change
Variable expressions are no longer expanded in python functions as of
BitBake commit 8bf33a8e92c0e188fa392030025756196c96fcbb, so we've now
got to do this explicitly here.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/buildhistory.bbclass')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index a5a85ff4fc..4854862a6e 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -538,7 +538,7 @@ python buildhistory_get_extra_sdkinfo() { if d.getVar('BB_CURRENTTASK', True) == 'populate_sdk_ext': tasksizes = {} filesizes = {} - for root, _, files in os.walk('${SDK_OUTPUT}/${SDKPATH}/sstate-cache'): + for root, _, files in os.walk(d.expand('${SDK_OUTPUT}/${SDKPATH}/sstate-cache')): for fn in files: if fn.endswith('.tgz'): fsize = int(math.ceil(float(os.path.getsize(os.path.join(root, fn))) / 1024)) @@ -546,11 +546,11 @@ python buildhistory_get_extra_sdkinfo() { origtotal = tasksizes.get(task, 0) tasksizes[task] = origtotal + fsize filesizes[fn] = fsize - with open('${BUILDHISTORY_DIR_SDK}/sstate-package-sizes.txt', 'w') as f: + with open(d.expand('${BUILDHISTORY_DIR_SDK}/sstate-package-sizes.txt'), 'w') as f: filesizes_sorted = sorted(filesizes.items(), key=operator.itemgetter(1), reverse=True) for fn, size in filesizes_sorted: f.write('%10d KiB %s\n' % (size, fn)) - with open('${BUILDHISTORY_DIR_SDK}/sstate-task-sizes.txt', 'w') as f: + with open(d.expand('${BUILDHISTORY_DIR_SDK}/sstate-task-sizes.txt'), 'w') as f: tasksizes_sorted = sorted(tasksizes.items(), key=operator.itemgetter(1), reverse=True) for task, size in tasksizes_sorted: f.write('%10d KiB %s\n' % (size, task)) |