From e96d72a1ce0e4472b16a93287d4538e4788213cf Mon Sep 17 00:00:00 2001 From: Henning Heinold Date: Fri, 15 Oct 2010 12:23:43 +0200 Subject: oe.unpack: fix subdir-feature --- lib/oe/unpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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)) -- cgit 1.2.3-korg