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:31:00 +0100 |
commit | 83b90e54be706ff7a68385d72340ee558e4360ef (patch) | |
tree | 8c441c6befd8c5957b8228d4e2802dfe3feacfe2 | |
parent | 40232ed397a586a520ce6ef6e005d4db336ace03 (diff) | |
download | poky-83b90e54be706ff7a68385d72340ee558e4360ef.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.
(From OE-Core rev: 5db4b53e5d969a6da314904fa2335462947c97ea)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 () { | |||
1079 | return name | 1079 | return name |
1080 | 1080 | ||
1081 | workdir = d.getVar('WORKDIR', True) | 1081 | workdir = d.getVar('WORKDIR', True) |
1082 | outdir = d.getVar('DEPLOY_DIR_IPK', True) | ||
1083 | tmpdir = d.getVar('TMPDIR', True) | 1082 | tmpdir = d.getVar('TMPDIR', True) |
1084 | pkgd = d.getVar('PKGD', True) | 1083 | pkgd = d.getVar('PKGD', True) |
1085 | pkgdest = d.getVar('PKGDEST', True) | 1084 | pkgdest = d.getVar('PKGDEST', True) |
1086 | if not workdir or not outdir or not pkgd or not tmpdir: | 1085 | if not workdir or not pkgd or not tmpdir: |
1087 | bb.error("Variables incorrectly set, unable to package") | 1086 | bb.error("Variables incorrectly set, unable to package") |
1088 | return | 1087 | return |
1089 | 1088 | ||