summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2010-09-08 11:32:10 -0700
committerTom Rini <tom_rini@mentor.com>2010-09-13 09:00:41 -0700
commit382a912f9bc71c535a3174fb39e56cff5dd760ab (patch)
treeb5427474008c825532e326da1287a96354567460
parent6ed4b0e2b64aecb5155dd6b880407a94f28e0e82 (diff)
downloadopenembedded-382a912f9bc71c535a3174fb39e56cff5dd760ab.tar.gz
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>
-rw-r--r--classes/packaged-staging.bbclass2
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 + "/"