Merge pull request #144 from kergoth/oe-external-run-in-topdir

oe.external: run in topdir, not tmpdir
This commit is contained in:
Noor-Ahsan
2016-11-02 14:32:25 +05:00
committed by GitHub

View File

@@ -4,7 +4,7 @@ import bb
def run(d, cmd, *args):
topdir = d.getVar('TMPDIR', True)
topdir = d.getVar('TOPDIR', True)
toolchain_path = d.getVar('EXTERNAL_TOOLCHAIN', True)
if toolchain_path:
target_prefix = d.getVar('EXTERNAL_TARGET_SYS', True) + '-'