package_tar: Fix so it actually works

This tells us how long the code hasn't been used for :/

(From OE-Core rev: cd503c7f7fec6d177209832f73cec9c5d490be6b)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2013-02-17 09:04:31 +00:00
parent 8fb417a67c
commit e13755a542
1 changed files with 3 additions and 1 deletions

View File

@ -24,12 +24,14 @@ python do_package_tar () {
bb.debug(1, "PACKAGES not defined, nothing to package")
return
pkgdest = d.getVar('PKGDEST', True)
bb.utils.mkdirhier(outdir)
bb.utils.mkdirhier(dvar)
for pkg in packages.split():
localdata = bb.data.createCopy(d)
root = "%s/install/%s" % (workdir, pkg)
root = "%s/%s" % (pkgdest, pkg)
overrides = localdata.getVar('OVERRIDES')
localdata.setVar('OVERRIDES', '%s:%s' % (overrides, pkg))