Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-networking][PATCH] layer.conf: Use .= for adding to BBPATH and += to BBFILES
@ 2013-01-04 11:33 Andrei Gherzan
  2013-01-04 20:16 ` Joe MacDonald
  0 siblings, 1 reply; 2+ messages in thread
From: Andrei Gherzan @ 2013-01-04 11:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Andrei Gherzan

Fixes parsing errors which is appearing after this commit to
meta-openembedded

http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e

This triggers
exception NameError: name 'base_contains' is not defined
without this change

Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
---
 meta-networking/conf/layer.conf |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-networking/conf/layer.conf b/meta-networking/conf/layer.conf
index f26a172..1ea2bc2 100644
--- a/meta-networking/conf/layer.conf
+++ b/meta-networking/conf/layer.conf
@@ -1,9 +1,9 @@
 # We have a conf and classes directory, add to BBPATH
-BBPATH := "${BBPATH}:${LAYERDIR}"
+BBPATH .= ":${LAYERDIR}"
 
 # We have a packages directory, add to BBFILES
-BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
- ${LAYERDIR}/recipes-*/*/*.bbappend"
+BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
+            ${LAYERDIR}/recipes-*/*/*.bbappend"
 
 BBFILE_COLLECTIONS += "networking"
 BBFILE_PATTERN_networking := "^${LAYERDIR}/"
-- 
1.7.9.5




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [meta-networking][PATCH] layer.conf: Use .= for adding to BBPATH and += to BBFILES
  2013-01-04 11:33 [meta-networking][PATCH] layer.conf: Use .= for adding to BBPATH and += to BBFILES Andrei Gherzan
@ 2013-01-04 20:16 ` Joe MacDonald
  0 siblings, 0 replies; 2+ messages in thread
From: Joe MacDonald @ 2013-01-04 20:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Andrei Gherzan

[-- Attachment #1: Type: text/plain, Size: 1354 bytes --]

Merged, thanks.
-J.

[[oe] [meta-networking][PATCH] layer.conf: Use .= for adding to BBPATH and += to BBFILES] On 13.01.04 (Fri 13:33) Andrei Gherzan wrote:

> Fixes parsing errors which is appearing after this commit to
> meta-openembedded
> 
> http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f684c41dbd6333583e
> 
> This triggers
> exception NameError: name 'base_contains' is not defined
> without this change
> 
> Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
> ---
>  meta-networking/conf/layer.conf |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/meta-networking/conf/layer.conf b/meta-networking/conf/layer.conf
> index f26a172..1ea2bc2 100644
> --- a/meta-networking/conf/layer.conf
> +++ b/meta-networking/conf/layer.conf
> @@ -1,9 +1,9 @@
>  # We have a conf and classes directory, add to BBPATH
> -BBPATH := "${BBPATH}:${LAYERDIR}"
> +BBPATH .= ":${LAYERDIR}"
>  
>  # We have a packages directory, add to BBFILES
> -BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
> - ${LAYERDIR}/recipes-*/*/*.bbappend"
> +BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
> +            ${LAYERDIR}/recipes-*/*/*.bbappend"
>  
>  BBFILE_COLLECTIONS += "networking"
>  BBFILE_PATTERN_networking := "^${LAYERDIR}/"
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-04 20:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-04 11:33 [meta-networking][PATCH] layer.conf: Use .= for adding to BBPATH and += to BBFILES Andrei Gherzan
2013-01-04 20:16 ` Joe MacDonald

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox