mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
classes/package_rpm: remove unsed outdir variable
Not only outdir had the wrong value, it wasn't used actually used in that function. (From OE-Core rev: 5db4b53e5d969a6da314904fa2335462947c97ea) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
40232ed397
commit
83b90e54be
@@ -1079,11 +1079,10 @@ python do_package_rpm () {
|
|||||||
return name
|
return name
|
||||||
|
|
||||||
workdir = d.getVar('WORKDIR', True)
|
workdir = d.getVar('WORKDIR', True)
|
||||||
outdir = d.getVar('DEPLOY_DIR_IPK', True)
|
|
||||||
tmpdir = d.getVar('TMPDIR', True)
|
tmpdir = d.getVar('TMPDIR', True)
|
||||||
pkgd = d.getVar('PKGD', True)
|
pkgd = d.getVar('PKGD', True)
|
||||||
pkgdest = d.getVar('PKGDEST', 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")
|
bb.error("Variables incorrectly set, unable to package")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user