From: Phil Blundell Date: Sun, 3 Oct 2004 13:11:58 +0000 (+0000) Subject: apply PATH to unpack command X-Git-Tag: Release-2010-05/1~16760 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5159b16578b8ed9e2389ad7d926de3593cdf9128;p=openembedded.git apply PATH to unpack command BKrev: 415ffa9e0hQk33A5PXFRYo7ekUA_cQ --- diff --git a/classes/base.oeclass b/classes/base.oeclass index e70ef41115..2d4a21cafc 100644 --- a/classes/base.oeclass +++ b/classes/base.oeclass @@ -424,6 +424,7 @@ python base_do_unpack() { cmd = 'cp %s %s/%s/' % (local, os.getcwd(), destdir) if not cmd: continue + cmd = "PATH=\"%s\" %s" % (oe.data.getVar('PATH', d, 1), cmd) oe.note("Unpacking %s to %s/" % (local, os.getcwd())) ret = os.system(cmd) if ret != 0: