From: Richard Purdie Date: Fri, 6 Jun 2008 09:52:53 +0000 (+0000) Subject: packaged-staging.bbclass: Tweak package install command X-Git-Tag: 2011-1~8884 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=dedaeb4fcbca969880edd00bd98bdc64f6a56305;p=openembedded-core.git packaged-staging.bbclass: Tweak package install command git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4598 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/meta/classes/packaged-staging.bbclass b/meta/classes/packaged-staging.bbclass index 0dd6900d77..3ff37ddd65 100644 --- a/meta/classes/packaged-staging.bbclass +++ b/meta/classes/packaged-staging.bbclass @@ -190,7 +190,7 @@ python packagestage_scenefunc () { # # Install the staging package somewhere temporarily so we can extract the stamp files # - cmd = bb.data.expand("${PSTAGE_PKGMANAGER} -force-depends -f ${PSTAGE_MACHCONFIG} -o ${WORKDIR}/tstage install", d) + cmd = bb.data.expand("${PSTAGE_PKGMANAGER} -f ${PSTAGE_MACHCONFIG} -force-depends -o ${WORKDIR}/tstage install", d) ret = os.system("PATH=\"%s\" %s %s" % (path, cmd, stagepkg)) if ret != 0: bb.fatal("Couldn't install the staging package to a temp directory")