diff options
author | Tom Rini <tom_rini@mentor.com> | 2010-09-08 11:32:10 -0700 |
---|---|---|
committer | Tom Rini <tom_rini@mentor.com> | 2010-09-13 09:00:41 -0700 |
commit | 382a912f9bc71c535a3174fb39e56cff5dd760ab (patch) | |
tree | b5427474008c825532e326da1287a96354567460 /classes | |
parent | 6ed4b0e2b64aecb5155dd6b880407a94f28e0e82 (diff) |
packaged-staging: When taking ipks use PKGV not PV
This fixes a problem where ncurses 5.7 (and readline) wasn't having
ipks stored. package_ipk.bbclass uses PKGV not PV which means
packaged-staging should too.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r-- | classes/packaged-staging.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/packaged-staging.bbclass b/classes/packaged-staging.bbclass index 377b8de3b1..58d336a954 100644 --- a/classes/packaged-staging.bbclass +++ b/classes/packaged-staging.bbclass @@ -442,7 +442,7 @@ python do_package_stage () { if not packaged(pkg, d): continue if bb.data.inherits_class('package_ipk', d): - srcname = bb.data.expand(pkgname + "_${PV}-" + pr + "${DISTRO_PR}" + "_" + arch + ".ipk", d) + srcname = bb.data.expand(pkgname + "_${PKGV}-" + pr + "${DISTRO_PR}" + "_" + arch + ".ipk", d) srcfile = bb.data.expand("${DEPLOY_DIR_IPK}/" + arch + "/" + srcname, d) if os.path.exists(srcfile): destpath = ipkpath + "/" + arch + "/" |