aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHenning Heinold <heinold@inf.fu-berlin.de>2010-10-15 12:23:43 +0200
committerHenning Heinold <heinold@inf.fu-berlin.de>2010-10-15 12:26:07 +0200
commite96d72a1ce0e4472b16a93287d4538e4788213cf (patch)
tree37d92b210554db771c5945f53fbe8042009f782e /lib
parenta9df044f706ef59b7125738a2da2d4fd291330a8 (diff)
downloadopenembedded-e96d72a1ce0e4472b16a93287d4538e4788213cf.tar.gz
oe.unpack: fix subdir-feature
Diffstat (limited to 'lib')
-rw-r--r--lib/oe/unpack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oe/unpack.py b/lib/oe/unpack.py
index f2139baa99..5a8334bc1a 100644
--- a/lib/oe/unpack.py
+++ b/lib/oe/unpack.py
@@ -89,6 +89,6 @@ def unpack_file(file, destdir, dos=False, env=None):
import oe.process
try:
- oe.process.run(cmd, env=env)
+ oe.process.run(cmd, env=env, cwd=destdir)
except oe.process.CmdError, exc:
raise UnpackError(file, destdir, cmd, str(exc))