* [PATCH 0/1] Quote fixes.
@ 2012-02-29 0:23 Beth Flanagan
2012-02-29 0:23 ` [PATCH 1/1] bootimg.bbclass: Quoting fixes Beth Flanagan
0 siblings, 1 reply; 3+ messages in thread
From: Beth Flanagan @ 2012-02-29 0:23 UTC (permalink / raw)
To: openembedded-core
I found these ParseError quoting issues in the fri2 layer. I fixed other
quoting issues in the class while I was there.
The following changes since commit d86e3082e695cde555df276a2436873fa5381130:
licenses.conf: fix quotting of SRC_DISTRIBUTE_LICENSES (2012-02-28 17:51:52 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib eflanagan/quote_fixes
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=eflanagan/quote_fixes
Elizabeth Flanagan (1):
bootimg.bbclass: Quoting fixes
meta/classes/bootimg.bbclass | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] bootimg.bbclass: Quoting fixes
2012-02-29 0:23 [PATCH 0/1] Quote fixes Beth Flanagan
@ 2012-02-29 0:23 ` Beth Flanagan
2012-02-29 1:13 ` Otavio Salvador
0 siblings, 1 reply; 3+ messages in thread
From: Beth Flanagan @ 2012-02-29 0:23 UTC (permalink / raw)
To: openembedded-core
From: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
More quoting issues during an fri build. Fixing as per standard.
Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
---
meta/classes/bootimg.bbclass | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass
index 1d1a3d0..dd37034 100644
--- a/meta/classes/bootimg.bbclass
+++ b/meta/classes/bootimg.bbclass
@@ -35,8 +35,8 @@ ISODIR = "${S}/iso"
BOOTIMG_VOLUME_ID ?= "boot"
BOOTIMG_EXTRA_SPACE ?= "512"
-EFI = ${@base_contains("MACHINE_FEATURES", "efi", "1", "0", d)}
-EFI_CLASS = ${@base_contains("MACHINE_FEATURES", "efi", "grub-efi", "dummy", d)}
+EFI = '${@base_contains("MACHINE_FEATURES", "efi", "1", "0", d)}'
+EFI_CLASS = '${@base_contains("MACHINE_FEATURES", "efi", "grub-efi", "dummy", d)}'
# Include legacy boot if MACHINE_FEATURES includes "pcbios" or if it does not
# contain "efi". This way legacy is supported by default if neither is
@@ -52,8 +52,8 @@ def pcbios_class(d):
return "syslinux"
return "dummy"
-PCBIOS = ${@pcbios(d)}
-PCBIOS_CLASS = ${@pcbios_class(d)}
+PCBIOS = '${@pcbios(d)}'
+PCBIOS_CLASS = '${@pcbios_class(d)}'
inherit ${PCBIOS_CLASS}
inherit ${EFI_CLASS}
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] bootimg.bbclass: Quoting fixes
2012-02-29 0:23 ` [PATCH 1/1] bootimg.bbclass: Quoting fixes Beth Flanagan
@ 2012-02-29 1:13 ` Otavio Salvador
0 siblings, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2012-02-29 1:13 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, Feb 28, 2012 at 21:23, Beth Flanagan
<elizabeth.flanagan@intel.com> wrote:
> More quoting issues during an fri build. Fixing as per standard.
Already done by Saul :)
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-02-29 1:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29 0:23 [PATCH 0/1] Quote fixes Beth Flanagan
2012-02-29 0:23 ` [PATCH 1/1] bootimg.bbclass: Quoting fixes Beth Flanagan
2012-02-29 1:13 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox