mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-06 07:54:37 +02:00
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 <kergoth@gmail.com>
This commit is contained in:
@@ -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) + '-'
|
||||
|
||||
Reference in New Issue
Block a user