From: Markus Lehtonen Date: Fri, 18 Dec 2015 08:39:41 +0000 (+0200) Subject: devtool: extract: use the correct datastore for builddir X-Git-Tag: 2016-4~1266 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6f5bec4570a9237681fcee3922209af2a48f6c07;p=openembedded-core.git devtool: extract: use the correct datastore for builddir Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- 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): # 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)