From 4a2f9d3bb1e11e5eca7b17308c462085de2ee2ec Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 31 Mar 2015 11:48:44 -0700 Subject: [PATCH] external-run.inc: run in TMPDIR, not TOPDIR TMPDIR is already in the BB_HASHBASE_WHITELIST, whereas TOPDIR is not. Signed-off-by: Christopher Larson --- conf/distro/include/external-run.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/distro/include/external-run.inc b/conf/distro/include/external-run.inc index 1d53c36..7931e38 100644 --- a/conf/distro/include/external-run.inc +++ b/conf/distro/include/external-run.inc @@ -1,7 +1,7 @@ def external_run(d, cmd, *args): import subprocess - topdir = d.getVar('TOPDIR', True) + topdir = d.getVar('TMPDIR', True) toolchain_path = d.getVar('EXTERNAL_TOOLCHAIN', True) if toolchain_path: target_prefix = d.getVar('EXTERNAL_TARGET_SYS', True) + '-'