Not only outdir had the wrong value, it wasn't used actually used in that function.
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
return name
workdir = d.getVar('WORKDIR', True)
- outdir = d.getVar('DEPLOY_DIR_IPK', True)
tmpdir = d.getVar('TMPDIR', True)
pkgd = d.getVar('PKGD', True)
pkgdest = d.getVar('PKGDEST', True)
- if not workdir or not outdir or not pkgd or not tmpdir:
+ if not workdir or not pkgd or not tmpdir:
bb.error("Variables incorrectly set, unable to package")
return