summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2015-12-18 10:39:41 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-26 22:31:58 +0000
commitaadb879e5b302e405e05443f56611c17868d10b6 (patch)
treed94bba93a19ec1361034bf79d140d64d7fb005c8 /scripts
parentfa801e775d379c8f1ca55fd49e3225e8f596c1fa (diff)
downloadpoky-aadb879e5b302e405e05443f56611c17868d10b6.tar.gz
devtool: extract: use the correct datastore for builddir
(From OE-Core rev: 6f5bec4570a9237681fcee3922209af2a48f6c07) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/devtool/standard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index 18daf8499d..83906ac3d7 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -559,7 +559,7 @@ def _extract_source(srctree, keep_temp, devbranch, sync, d):
559 # Store generate and store kernel config 559 # Store generate and store kernel config
560 logger.info('Generating kernel config') 560 logger.info('Generating kernel config')
561 task_executor.exec_func('do_configure', False) 561 task_executor.exec_func('do_configure', False)
562 kconfig = os.path.join(d.getVar('B', True), '.config') 562 kconfig = os.path.join(crd.getVar('B', True), '.config')
563 shutil.copy2(kconfig, srcsubdir) 563 shutil.copy2(kconfig, srcsubdir)
564 564
565 565