* [PATCH 0/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell
@ 2015-04-09 20:21 Alejandro Hernandez
2015-04-09 20:21 ` [PATCH 1/1] " Alejandro Hernandez
0 siblings, 1 reply; 4+ messages in thread
From: Alejandro Hernandez @ 2015-04-09 20:21 UTC (permalink / raw)
To: bitbake-devel
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 <alejandro.hernandez@linux.intel.com>
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 <rich.tollerton@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
bitbake/lib/bb/data.py | 1 +
1 file changed, 1 insertion(+)
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell 2015-04-09 20:21 [PATCH 0/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell Alejandro Hernandez @ 2015-04-09 20:21 ` Alejandro Hernandez 2015-04-17 0:31 ` [bitbake-devel] " Martin Jansa 0 siblings, 1 reply; 4+ messages in thread From: Alejandro Hernandez @ 2015-04-09 20:21 UTC (permalink / raw) To: bitbake-devel From: Richard Tollerton <rich.tollerton@ni.com> 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 <rich.tollerton@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> --- bitbake/lib/bb/data.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index eb628c7..82eefef 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py @@ -238,6 +238,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False): # to a shell, we need to escape the quotes in the var alter = re.sub('"', '\\"', val) alter = re.sub('\n', ' \\\n', alter) + alter = re.sub('\\$', '\\\\$', alter) o.write('%s="%s"\n' % (varExpanded, alter)) return 0 -- 1.9.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell 2015-04-09 20:21 ` [PATCH 1/1] " Alejandro Hernandez @ 2015-04-17 0:31 ` Martin Jansa 0 siblings, 0 replies; 4+ messages in thread From: Martin Jansa @ 2015-04-17 0:31 UTC (permalink / raw) To: Alejandro Hernandez; +Cc: openembedded-core, bitbake-devel On Thu, Apr 09, 2015 at 03:21:49PM -0500, Alejandro Hernandez wrote: > From: Richard Tollerton <rich.tollerton@ni.com> > > 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) This was already cherry-picked to 1.24 where it IIRC breaks powertop build with current oe-core/dizzy. Please backport: commit a3e9b391e1024d6d2e256b75c214d34e6693e332 Author: Martin Jansa <martin.jansa@gmail.com> Date: Thu Dec 18 15:54:14 2014 +0100 powertop: Fix build for !uclibc * EXTRA_LDFLAGS isn't defined for !uclibc and configure fails when it reads it unexpanded, see config.log snippet: to unblock Dizzy builds and backport the same to Dylan before merging this to 2.22. > > Signed-off-by: Richard Tollerton <rich.tollerton@ni.com> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> > Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> > > --- > bitbake/lib/bb/data.py | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py > index eb628c7..82eefef 100644 > --- a/bitbake/lib/bb/data.py > +++ b/bitbake/lib/bb/data.py > @@ -238,6 +238,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False): > # to a shell, we need to escape the quotes in the var > alter = re.sub('"', '\\"', val) > alter = re.sub('\n', ' \\\n', alter) > + alter = re.sub('\\$', '\\\\$', alter) > o.write('%s="%s"\n' % (varExpanded, alter)) > return 0 > > -- > 1.9.1 > > -- > _______________________________________________ > bitbake-devel mailing list > bitbake-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/bitbake-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [bitbake-devel] [PATCH 1/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell @ 2015-04-17 0:31 ` Martin Jansa 0 siblings, 0 replies; 4+ messages in thread From: Martin Jansa @ 2015-04-17 0:31 UTC (permalink / raw) To: Alejandro Hernandez; +Cc: openembedded-core, bitbake-devel On Thu, Apr 09, 2015 at 03:21:49PM -0500, Alejandro Hernandez wrote: > From: Richard Tollerton <rich.tollerton@ni.com> > > 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) This was already cherry-picked to 1.24 where it IIRC breaks powertop build with current oe-core/dizzy. Please backport: commit a3e9b391e1024d6d2e256b75c214d34e6693e332 Author: Martin Jansa <martin.jansa@gmail.com> Date: Thu Dec 18 15:54:14 2014 +0100 powertop: Fix build for !uclibc * EXTRA_LDFLAGS isn't defined for !uclibc and configure fails when it reads it unexpanded, see config.log snippet: to unblock Dizzy builds and backport the same to Dylan before merging this to 2.22. > > Signed-off-by: Richard Tollerton <rich.tollerton@ni.com> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> > Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> > > --- > bitbake/lib/bb/data.py | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py > index eb628c7..82eefef 100644 > --- a/bitbake/lib/bb/data.py > +++ b/bitbake/lib/bb/data.py > @@ -238,6 +238,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False): > # to a shell, we need to escape the quotes in the var > alter = re.sub('"', '\\"', val) > alter = re.sub('\n', ' \\\n', alter) > + alter = re.sub('\\$', '\\\\$', alter) > o.write('%s="%s"\n' % (varExpanded, alter)) > return 0 > > -- > 1.9.1 > > -- > _______________________________________________ > bitbake-devel mailing list > bitbake-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/bitbake-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-04-17 0:31 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-04-09 20:21 [PATCH 0/1] [daisy][dizzy] data.py: fixes bad substitution when running devshell Alejandro Hernandez 2015-04-09 20:21 ` [PATCH 1/1] " Alejandro Hernandez 2015-04-17 0:31 ` Martin Jansa 2015-04-17 0:31 ` [bitbake-devel] " Martin Jansa
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.