From: Henning Heinold Date: Fri, 15 Oct 2010 10:23:43 +0000 (+0200) Subject: oe.unpack: fix subdir-feature X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e96d72a1ce0e4472b16a93287d4538e4788213cf;p=openembedded.git oe.unpack: fix subdir-feature --- 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))