aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-02-14 11:22:56 -0700
committerTom Rini <tom_rini@mentor.com>2011-02-14 11:22:56 -0700
commit62f40fb9dd193225b987aebf2a185575a9812ed5 (patch)
treeec2d60d3af8926de03af049a64829340b8198c3b /classes
parent3a11e3464d088fd8122cd43df647c984aa6dcc19 (diff)
downloadopenembedded-62f40fb9dd193225b987aebf2a185575a9812ed5.tar.gz
packaged-staging: Don't pass a trailing ' ' to bb.mkdirhier
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/packaged-staging.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/packaged-staging.bbclass b/classes/packaged-staging.bbclass
index bfc4ed8640..643023df43 100644
--- a/classes/packaged-staging.bbclass
+++ b/classes/packaged-staging.bbclass
@@ -232,7 +232,7 @@ python packagestage_scenefunc () {
#
# Install the staging package somewhere temporarily so we can extract the stamp files
#
- bb.mkdirhier(bb.data.expand("${WORKDIR}/tstage/${libdir_native}/opkg/info/ ", d))
+ bb.mkdirhier(bb.data.expand("${WORKDIR}/tstage/${libdir_native}/opkg/info/", d))
cmd = bb.data.expand("${PSTAGE_PKGMANAGER} -f ${PSTAGE_MACHCONFIG} -force-depends -o ${WORKDIR}/tstage install", d)
try:
oe_run(d, "%s %s" % (cmd, stagepkg))