packaged-staging: Don't pass a trailing ' ' to bb.mkdirhier
authorTom Rini <tom_rini@mentor.com>
Mon, 14 Feb 2011 18:22:56 +0000 (11:22 -0700)
committerTom Rini <tom_rini@mentor.com>
Mon, 14 Feb 2011 18:22:56 +0000 (11:22 -0700)
Signed-off-by: Tom Rini <tom_rini@mentor.com>
classes/packaged-staging.bbclass

index bfc4ed8..643023d 100644 (file)
@@ -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))