aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-09-11 21:36:19 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-11 23:20:50 +0100
commit5db4b53e5d969a6da314904fa2335462947c97ea (patch)
tree7b5ca2e71e124890f2707808f3842f813ea1e9e0 /meta/classes
parent51c43e08b388ed15520c66977bbb49df18e5f124 (diff)
downloadopenembedded-core-5db4b53e5d969a6da314904fa2335462947c97ea.tar.gz
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/classes')
-rw-r--r--meta/classes/package_rpm.bbclass3
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