aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-18 08:30:42 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-18 08:30:42 +0000
commitb503b428c7996ed96845be5daeca42da1fbb588d (patch)
tree89a7e9c8e206564e5ef0eac6a9297ee6e26266a5 /meta/lib
parent9d9bca8785911e8ae06d507bbfb99d6a811f072e (diff)
downloadopenembedded-core-contrib-b503b428c7996ed96845be5daeca42da1fbb588d.tar.gz
Revert "lib/oe/image.py: fix working directory"
This reverts commit 3f49597225a58965124503ca5f3cc4011b04b3c0. This change appears to cause more problems than it fixes since the compression commands usually work in the deploy dir but the archive ones have always worked in the rootfs dir (which is clear from the tar command we use).
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/image.py b/meta/lib/oe/image.py
index 31193f28dd..c15296f5c0 100644
--- a/meta/lib/oe/image.py
+++ b/meta/lib/oe/image.py
@@ -176,8 +176,8 @@ class Image(object):
bb.data.update_data(localdata)
localdata.setVar('type', type)
- cmds.append(localdata.expand("\tcd ${DEPLOY_DIR_IMAGE}"))
cmds.append("\t" + localdata.getVar("IMAGE_CMD", True))
+ cmds.append(localdata.expand("\tcd ${DEPLOY_DIR_IMAGE}"))
if type in cimages:
for ctype in cimages[type]: