From e94dba8309874a82a570db60223d18b2c723c3a5 Mon Sep 17 00:00:00 2001 From: Darren Hart Date: Wed, 25 May 2011 12:01:11 -0700 Subject: linux-yocto*: correct FILESEXTRAPATHS assignment in all layers My previous commit used a self referencing immediate expansion assignment using. This causes a circular reference and build failure, particularly when more than one layer is configured in. Use the _prepend mechanism in conjunction with the immediate expansion assignment operator to accomplish a similar thing without the self referencing. Note: This patch is dependent on changes to oe-core, specifically: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-May/003145.html Signed-off-by: Darren Hart Cc: Tom Zanussi Cc: Phill Blundell Cc: Koen Kooi --- meta-fishriver/recipes-kernel/linux/linux-yocto-stable_git.bbappend | 2 +- meta-fishriver/recipes-kernel/linux/linux-yocto_git.bbappend | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-fishriver') diff --git a/meta-fishriver/recipes-kernel/linux/linux-yocto-stable_git.bbappend b/meta-fishriver/recipes-kernel/linux/linux-yocto-stable_git.bbappend index 8003c935..dcc4534b 100644 --- a/meta-fishriver/recipes-kernel/linux/linux-yocto-stable_git.bbappend +++ b/meta-fishriver/recipes-kernel/linux/linux-yocto-stable_git.bbappend @@ -1,4 +1,4 @@ -FILESEXTRAPATHS := "${FILESEXTRAPATHS}:${THISDIR}/${PN}" +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" COMPATIBLE_MACHINE_fishriver = "crownbay" KMACHINE_fishriver = "crownbay" diff --git a/meta-fishriver/recipes-kernel/linux/linux-yocto_git.bbappend b/meta-fishriver/recipes-kernel/linux/linux-yocto_git.bbappend index 2e122219..ba38dbee 100644 --- a/meta-fishriver/recipes-kernel/linux/linux-yocto_git.bbappend +++ b/meta-fishriver/recipes-kernel/linux/linux-yocto_git.bbappend @@ -1,4 +1,4 @@ -FILESEXTRAPATHS := "${FILESEXTRAPATHS}:${THISDIR}/${PN}" +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" COMPATIBLE_MACHINE_fishriver = "fishriver" # zzzz /yocto/standard/crownbay->fishriver KMACHINE_fishriver = "yocto/standard/crownbay" -- cgit v1.2.3-54-g00ecf