From f1619b3567027956fc452fa421f1b96ffcdedbcb Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 8 Jun 2009 17:36:08 +0100 Subject: packaged-staging.bbclass: Fix accidental debug addition Signed-off-by: Richard Purdie --- meta/classes/packaged-staging.bbclass | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/meta/classes/packaged-staging.bbclass b/meta/classes/packaged-staging.bbclass index 094aa5979..9b9ba16bf 100644 --- a/meta/classes/packaged-staging.bbclass +++ b/meta/classes/packaged-staging.bbclass @@ -92,8 +92,7 @@ def pstage_manualclean(srcname, destvarname, d): if (file == "staging.lock"): continue filepath = os.path.join(walkroot, file).replace(src, dest) - bb.note("rm %s" % filepath) - os.system("rm %s" % filepath) + os.system("rm %s 2> /dev/null" % filepath) def pstage_set_pkgmanager(d): import bb @@ -176,16 +175,11 @@ python packagestage_scenefunc () { bb.build.exec_func("staging_helper", d) - bb.note("Here 1\n") - removepkg = bb.data.expand("${PSTAGE_PKGPN}", d) - bb.note("Here 1.1\n") pstage_cleanpackage(removepkg, d) - bb.note("Here 1.2\n") - stagepkg = bb.data.expand("${PSTAGE_PKG}", d) - bb.note("Here 2 %s\n"% stagepkg) + stagepkg = bb.data.expand("${PSTAGE_PKG}", d) if os.path.exists(stagepkg): path = bb.data.getVar("PATH", d, 1) -- cgit v1.2.3