packaged-staging.bbclass: Fix variable name typo

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4375 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2008-04-30 15:16:45 +00:00
parent 04c650ae4f
commit b4ebeec27e
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ def pstage_cleanpackage(pkgname, d):
if ret == 0:
bb.note("Yes. Uninstalling package from staging...")
removecmd = bb.data.getVar("PSTAGE_REMOVE_CMD", d, 1)
ret = os.system("PATH=\"%s\" %s %s" % (path, removecmd, removepkg))
ret = os.system("PATH=\"%s\" %s %s" % (path, removecmd, pkgname))
if ret != 0:
bb.note("Failure removing staging package")
else: