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 9B3186E268 for ; Thu, 9 Apr 2015 20:21:47 +0000 (UTC) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 09 Apr 2015 13:21:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,552,1422950400"; d="scan'208";a="706462424" Received: from carloses-mobl.amr.corp.intel.com (HELO aehernan-DevStation.lar.corp.intel.com) ([10.252.254.35]) by fmsmga002.fm.intel.com with ESMTP; 09 Apr 2015 13:21:47 -0700 From: Alejandro Hernandez To: bitbake-devel@lists.openembedded.org Date: Thu, 9 Apr 2015 15:21:48 -0500 Message-Id: <1428610909-12661-1-git-send-email-alejandro.hernandez@linux.intel.com> X-Mailer: git-send-email 1.9.1 Subject: [PATCH 0/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell X-BeenThere: bitbake-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussion that advance bitbake development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 20:21:48 -0000 The following patch comes from: 0a791e91e55d30b328ddbd90fdb0d5911c388b96 Fixes variables passed incorrectly to shell, affecting tasks such as devshell, menuconfig, etc. [YOCTO #7389] affects both daisy and dizzy branches, including this patch fixes the issue. Signed-off-by: Alejandro Hernandez Running bitbake inside make results in the exported environment variable MAKEOVERRIDES="${-*-command-variables-*-}", which the shell chokes on when trying to expand it. But of course, it probably shouldn't have been trying to expand it in the first place -- so just escape the dollar sign. (Bitbake rev: 18cd0ce6a55c9065c3f1bf223b47d817b5efcd8f) Signed-off-by: Richard Tollerton Signed-off-by: Richard Purdie --- bitbake/lib/bb/data.py | 1 + 1 file changed, 1 insertion(+)