From: Tom Rini Date: Wed, 8 Sep 2010 18:32:10 +0000 (-0700) Subject: packaged-staging: When taking ipks use PKGV not PV X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=382a912f9bc71c535a3174fb39e56cff5dd760ab;p=openembedded.git 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 --- 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 + "/"