* [PATCH 0/1] More quoting fixes
@ 2012-02-29 12:59 Paul Eggleton
2012-02-29 12:59 ` [PATCH 1/1] " Paul Eggleton
2012-02-29 13:14 ` [PATCH 0/1] " Richard Purdie
0 siblings, 2 replies; 7+ messages in thread
From: Paul Eggleton @ 2012-02-29 12:59 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 3cb519598d9ce044ccccb2d6a52a3c0933433501:
tcl 8.5.11: fix packaging for native version (2012-02-28 13:33:22 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/quoting-fixes
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/quoting-fixes
Paul Eggleton (1):
More quoting fixes
.../opensync/libsyncml_0.5.4.bb | 2 +-
meta/recipes-devtools/guile/guile_2.0.3.bb | 2 +-
meta/recipes-graphics/cairo/cairo.inc | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--
1.7.5.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/1] More quoting fixes
2012-02-29 12:59 [PATCH 0/1] More quoting fixes Paul Eggleton
@ 2012-02-29 12:59 ` Paul Eggleton
2012-02-29 13:19 ` Otavio Salvador
2012-02-29 13:14 ` [PATCH 0/1] " Richard Purdie
1 sibling, 1 reply; 7+ messages in thread
From: Paul Eggleton @ 2012-02-29 12:59 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
.../opensync/libsyncml_0.5.4.bb | 2 +-
meta/recipes-devtools/guile/guile_2.0.3.bb | 2 +-
meta/recipes-graphics/cairo/cairo.inc | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta-demoapps/recipes-connectivity/opensync/libsyncml_0.5.4.bb b/meta-demoapps/recipes-connectivity/opensync/libsyncml_0.5.4.bb
index c045698..e96463b 100644
--- a/meta-demoapps/recipes-connectivity/opensync/libsyncml_0.5.4.bb
+++ b/meta-demoapps/recipes-connectivity/opensync/libsyncml_0.5.4.bb
@@ -14,4 +14,4 @@ PACKAGES += "${PN}-tools"
FILES_${PN}-tools = "${bindir}"
FILES_${PN} = "${libdir}/*.so.*"
-export VERBOSE=1
+export VERBOSE="1"
diff --git a/meta/recipes-devtools/guile/guile_2.0.3.bb b/meta/recipes-devtools/guile/guile_2.0.3.bb
index 729aed0..538ff46 100644
--- a/meta/recipes-devtools/guile/guile_2.0.3.bb
+++ b/meta/recipes-devtools/guile/guile_2.0.3.bb
@@ -39,7 +39,7 @@ do_configure_prepend() {
mkdir -p po
}
-export GUILE_FOR_BUILD=${BUILD_SYS}-guile
+export GUILE_FOR_BUILD="${BUILD_SYS}-guile"
do_compile_append() {
# just for target recipe
diff --git a/meta/recipes-graphics/cairo/cairo.inc b/meta/recipes-graphics/cairo/cairo.inc
index 1d5d551..69984cb 100644
--- a/meta/recipes-graphics/cairo/cairo.inc
+++ b/meta/recipes-graphics/cairo/cairo.inc
@@ -27,4 +27,4 @@ EXTRA_OECONF += "${@get_cairo_fpu_setting(bb, d)} \
inherit autotools pkgconfig
# We don't depend on binutils so we need to disable this
-export ac_cv_lib_bfd_bfd_openr=no
+export ac_cv_lib_bfd_bfd_openr="no"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/1] More quoting fixes
2012-02-29 12:59 [PATCH 0/1] More quoting fixes Paul Eggleton
2012-02-29 12:59 ` [PATCH 1/1] " Paul Eggleton
@ 2012-02-29 13:14 ` Richard Purdie
1 sibling, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2012-02-29 13:14 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, 2012-02-29 at 12:59 +0000, Paul Eggleton wrote:
> The following changes since commit 3cb519598d9ce044ccccb2d6a52a3c0933433501:
>
> tcl 8.5.11: fix packaging for native version (2012-02-28 13:33:22 +0000)
>
> are available in the git repository at:
> git://git.openembedded.org/openembedded-core-contrib paule/quoting-fixes
> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/quoting-fixes
>
> Paul Eggleton (1):
> More quoting fixes
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] More quoting fixes
2012-02-29 12:59 ` [PATCH 1/1] " Paul Eggleton
@ 2012-02-29 13:19 ` Otavio Salvador
2012-02-29 13:24 ` Paul Eggleton
2012-02-29 13:26 ` Richard Purdie
0 siblings, 2 replies; 7+ messages in thread
From: Otavio Salvador @ 2012-02-29 13:19 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, Feb 29, 2012 at 09:59, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> -export VERBOSE=1
> +export VERBOSE="1"
I fully agree with the change but here it doesn't raise a parser
error. Isn't it expected to happen?
--
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] 7+ messages in thread
* Re: [PATCH 1/1] More quoting fixes
2012-02-29 13:19 ` Otavio Salvador
@ 2012-02-29 13:24 ` Paul Eggleton
2012-02-29 13:26 ` Richard Purdie
1 sibling, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2012-02-29 13:24 UTC (permalink / raw)
To: openembedded-core
On Wednesday 29 February 2012 10:19:33 Otavio Salvador wrote:
> On Wed, Feb 29, 2012 at 09:59, Paul Eggleton
>
> <paul.eggleton@linux.intel.com> wrote:
> > -export VERBOSE=1
> > +export VERBOSE="1"
>
> I fully agree with the change but here it doesn't raise a parser
> error. Isn't it expected to happen?
Yes, that has also been fixed in bitbake master.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] More quoting fixes
2012-02-29 13:19 ` Otavio Salvador
2012-02-29 13:24 ` Paul Eggleton
@ 2012-02-29 13:26 ` Richard Purdie
2012-02-29 13:27 ` Otavio Salvador
1 sibling, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2012-02-29 13:26 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, 2012-02-29 at 10:19 -0300, Otavio Salvador wrote:
> On Wed, Feb 29, 2012 at 09:59, Paul Eggleton
> <paul.eggleton@linux.intel.com> wrote:
> > -export VERBOSE=1
> > +export VERBOSE="1"
>
> I fully agree with the change but here it doesn't raise a parser
> error. Isn't it expected to happen?
No. I added something to bitbake a short while ago and these are parser
errors now!
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] More quoting fixes
2012-02-29 13:26 ` Richard Purdie
@ 2012-02-29 13:27 ` Otavio Salvador
0 siblings, 0 replies; 7+ messages in thread
From: Otavio Salvador @ 2012-02-29 13:27 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, Feb 29, 2012 at 10:26, Richard Purdie <rpurdie@rpsys.net> wrote:
> No. I added something to bitbake a short while ago and these are parser
> errors now!
Good.
--
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] 7+ messages in thread
end of thread, other threads:[~2012-02-29 13:35 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29 12:59 [PATCH 0/1] More quoting fixes Paul Eggleton
2012-02-29 12:59 ` [PATCH 1/1] " Paul Eggleton
2012-02-29 13:19 ` Otavio Salvador
2012-02-29 13:24 ` Paul Eggleton
2012-02-29 13:26 ` Richard Purdie
2012-02-29 13:27 ` Otavio Salvador
2012-02-29 13:14 ` [PATCH 0/1] " Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox