All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] packagehistory.bbclass: use PKGV + PKGR instead of PV + PR
@ 2010-08-04 12:24 Enrico Scholz
  0 siblings, 0 replies; only message in thread
From: Enrico Scholz @ 2010-08-04 12:24 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Enrico Scholz

In the final package feed there will be seen the PKGV/R values only
and the PV/R ones are meaningless.  Hence, use PKGV/R for validating
the package feed.

Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
---
 classes/packagehistory.bbclass |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/classes/packagehistory.bbclass b/classes/packagehistory.bbclass
index 492bbac..762388d 100644
--- a/classes/packagehistory.bbclass
+++ b/classes/packagehistory.bbclass
@@ -35,8 +35,8 @@ python emit_pkghistory() {
 
 	for pkg in packages.split():
 		pe = getpkgvar(pkg, 'PE') or "0"
-		pv = getpkgvar(pkg, 'PV')
-		pr = getpkgvar(pkg, 'PR')
+		pv = getpkgvar(pkg, 'PKGV')
+		pr = getpkgvar(pkg, 'PKGR')
 		destdir = os.path.join(pkghistdir, pkg, pe, pv, pr)
 		
 		#
-- 
1.7.2




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-04 12:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-04 12:24 [PATCH] packagehistory.bbclass: use PKGV + PKGR instead of PV + PR Enrico Scholz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.