]> code.ossystems Code Review - openembedded-core.git/commitdiff
devtool: extract: use the correct datastore for builddir
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Fri, 18 Dec 2015 08:39:41 +0000 (10:39 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 26 Jan 2016 22:31:08 +0000 (22:31 +0000)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/lib/devtool/standard.py

index 18daf8499deea8d832abbe1f01d139532f2a92d5..83906ac3d7b89a8234a80a2086bfeb27faa4cd10 100644 (file)
@@ -559,7 +559,7 @@ def _extract_source(srctree, keep_temp, devbranch, sync, d):
             # Store generate and store kernel config
             logger.info('Generating kernel config')
             task_executor.exec_func('do_configure', False)
-            kconfig = os.path.join(d.getVar('B', True), '.config')
+            kconfig = os.path.join(crd.getVar('B', True), '.config')
             shutil.copy2(kconfig, srcsubdir)