aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-02-14 11:22:56 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2011-04-22 16:37:39 +0200
commit334a5e4c7025879ed73171b2bc6260c5218a3f80 (patch)
tree2731dcf6e52152fb2c318c557124329c30f46c3b
parent037ee66e8663d135609ec5dce166030859df82ce (diff)
downloadopenembedded-334a5e4c7025879ed73171b2bc6260c5218a3f80.tar.gz
packaged-staging: Don't pass a trailing ' ' to bb.mkdirhier
Signed-off-by: Tom Rini <tom_rini@mentor.com>
-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 4eb7a9167d..57d070b1b0 100644
--- a/classes/packaged-staging.bbclass
+++ b/classes/packaged-staging.bbclass
@@ -229,7 +229,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))