All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-ppc][danny][PATCH] layer.conf: avoid unnecessary early expansion with :=
@ 2013-03-19  1:28 Christopher Larson
  2013-03-26  7:34 ` Luo Zhenhua-B19537
  0 siblings, 1 reply; 2+ messages in thread
From: Christopher Larson @ 2013-03-19  1:28 UTC (permalink / raw)
  To: meta-freescale; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

bitbake handles immediate expansions of LAYERDIR for us automatically.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 conf/layer.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 9d2e54b..ad8c5f3 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,11 +1,11 @@
 # We have a packages directory, add to BBFILES
-BBPATH := "${BBPATH}:${LAYERDIR}"
+BBPATH .= ":${LAYERDIR}"
 
 BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*"
 BBFILES += "${LAYERDIR}/images/*.bb*"
 
 BBFILE_COLLECTIONS += "fsl"
-BBFILE_PATTERN_fsl := "^${LAYERDIR}/"
+BBFILE_PATTERN_fsl = "^${LAYERDIR}/"
 BBFILE_PRIORITY_fsl = "5"
 
 BB_ENV_EXTRAWHITE := "KSRC USRC"
-- 
1.8.2



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

* Re: [meta-fsl-ppc][danny][PATCH] layer.conf: avoid unnecessary early expansion with :=
  2013-03-19  1:28 [meta-fsl-ppc][danny][PATCH] layer.conf: avoid unnecessary early expansion with := Christopher Larson
@ 2013-03-26  7:34 ` Luo Zhenhua-B19537
  0 siblings, 0 replies; 2+ messages in thread
From: Luo Zhenhua-B19537 @ 2013-03-26  7:34 UTC (permalink / raw)
  To: Christopher Larson, meta-freescale; +Cc: Christopher Larson

Applied, thanks.


Best Regards,

Zhenhua


> -----Original Message-----
> From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-
> bounces@yoctoproject.org] On Behalf Of Christopher Larson
> Sent: Tuesday, March 19, 2013 9:29 AM
> To: meta-freescale@yoctoproject.org
> Cc: Christopher Larson
> Subject: [meta-freescale] [meta-fsl-ppc][danny][PATCH] layer.conf: avoid
> unnecessary early expansion with :=
> 
> From: Christopher Larson <chris_larson@mentor.com>
> 
> bitbake handles immediate expansions of LAYERDIR for us automatically.
> 
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> ---
>  conf/layer.conf | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/conf/layer.conf b/conf/layer.conf index 9d2e54b..ad8c5f3
> 100644
> --- a/conf/layer.conf
> +++ b/conf/layer.conf
> @@ -1,11 +1,11 @@
>  # We have a packages directory, add to BBFILES -BBPATH :=
> "${BBPATH}:${LAYERDIR}"
> +BBPATH .= ":${LAYERDIR}"
> 
>  BBFILES += "${LAYERDIR}/recipes-*/*/*.bb*"
>  BBFILES += "${LAYERDIR}/images/*.bb*"
> 
>  BBFILE_COLLECTIONS += "fsl"
> -BBFILE_PATTERN_fsl := "^${LAYERDIR}/"
> +BBFILE_PATTERN_fsl = "^${LAYERDIR}/"
>  BBFILE_PRIORITY_fsl = "5"
> 
>  BB_ENV_EXTRAWHITE := "KSRC USRC"
> --
> 1.8.2
> 
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale




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

end of thread, other threads:[~2013-03-26  7:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-19  1:28 [meta-fsl-ppc][danny][PATCH] layer.conf: avoid unnecessary early expansion with := Christopher Larson
2013-03-26  7:34 ` Luo Zhenhua-B19537

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.