mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
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:
@@ -114,7 +114,7 @@ def pstage_cleanpackage(pkgname, d):
|
|||||||
if ret == 0:
|
if ret == 0:
|
||||||
bb.note("Yes. Uninstalling package from staging...")
|
bb.note("Yes. Uninstalling package from staging...")
|
||||||
removecmd = bb.data.getVar("PSTAGE_REMOVE_CMD", d, 1)
|
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:
|
if ret != 0:
|
||||||
bb.note("Failure removing staging package")
|
bb.note("Failure removing staging package")
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user