From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mail.openembedded.org (Postfix) with ESMTP id 9F538731AD for ; Fri, 18 Dec 2015 08:39:48 +0000 (UTC) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 18 Dec 2015 00:39:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,445,1444719600"; d="scan'208";a="843854144" Received: from lleszczu-mobl.igk.intel.com (HELO mqz-osx-suse64.fi.intel.com) ([10.252.17.67]) by orsmga001.jf.intel.com with ESMTP; 18 Dec 2015 00:39:48 -0800 From: Markus Lehtonen To: openembedded-core@lists.openembedded.org Date: Fri, 18 Dec 2015 10:39:41 +0200 Message-Id: <1450427985-12504-2-git-send-email-markus.lehtonen@linux.intel.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1450427985-12504-1-git-send-email-markus.lehtonen@linux.intel.com> References: <1450427985-12504-1-git-send-email-markus.lehtonen@linux.intel.com> Subject: [PATCH 1/5] devtool: extract: use the correct datastore for builddir X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Dec 2015 08:39:49 -0000 Signed-off-by: Markus Lehtonen --- scripts/lib/devtool/standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index a5e81f3..43fce11 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -461,7 +461,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) -- 2.1.4