diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-09-11 21:36:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-11 23:20:50 +0100 |
commit | 5db4b53e5d969a6da314904fa2335462947c97ea (patch) | |
tree | 7b5ca2e71e124890f2707808f3842f813ea1e9e0 /meta | |
parent | 51c43e08b388ed15520c66977bbb49df18e5f124 (diff) | |
download | openembedded-core-5db4b53e5d969a6da314904fa2335462947c97ea.tar.gz openembedded-core-5db4b53e5d969a6da314904fa2335462947c97ea.tar.bz2 openembedded-core-5db4b53e5d969a6da314904fa2335462947c97ea.zip |
classes/package_rpm: remove unsed outdir variable
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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/package_rpm.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass index 699d0f200a..2a7e1642f8 100644 --- a/meta/classes/package_rpm.bbclass +++ b/meta/classes/package_rpm.bbclass @@ -1079,11 +1079,10 @@ python do_package_rpm () { 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 |