summaryrefslogtreecommitdiff
path: root/meta-openpower/recipes-bsp/skiboot
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2019-05-10 01:02:32 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2019-05-11 01:54:01 +0300
commit7bcff9c6853b4090576534cc4e51fd3e5ad2d7f9 (patch)
treeeb14ffd43b67d59fca6d1b99f5227d6cf8de087c /meta-openpower/recipes-bsp/skiboot
parent176ed66ee047ec0a2fc6b835dc38b3815eb7d54e (diff)
downloadopenbmc-7bcff9c6853b4090576534cc4e51fd3e5ad2d7f9.tar.xz
meta-openpower: fix file search paths
Typically it does not make any sense to append to FILESEXTRAPATHS. FILESEXTRAPATHS is set in a bbappend when overriding something from another layer. The typical desire will be to make bitbake search for files in the layer with the bbappend and not some other layer earlier in the priority list. Further, appending to FILESEXTRAPATHS will introduce unexpected behavior when multiple layers append the same recipe - layers with higher layer priorities that append to FILESEXTRAPATHS will find their files overriden by files in layers with lower priorities. (From meta-openpower rev: 6e889e3889a474e481dc78890696b922a3bbbafc) Change-Id: I3607828dea6bd16b457ce3de3a26320ac8525f66 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-openpower/recipes-bsp/skiboot')
-rw-r--r--meta-openpower/recipes-bsp/skiboot/skiboot.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openpower/recipes-bsp/skiboot/skiboot.inc b/meta-openpower/recipes-bsp/skiboot/skiboot.inc
index ab455b0eb1..51d089ee98 100644
--- a/meta-openpower/recipes-bsp/skiboot/skiboot.inc
+++ b/meta-openpower/recipes-bsp/skiboot/skiboot.inc
@@ -4,7 +4,7 @@ LICENSE = "Apache-2.0"
SRC_URI += "git://github.com/open-power/skiboot.git"
SRC_URI += "file://0001-libffs-fix-gcc8-stringop-truncation-warnings.patch"
-FILESEXTRAPATHS_append := "${THISDIR}/skiboot:"
+FILESEXTRAPATHS_prepend := "${THISDIR}/skiboot:"
LIC_FILES_CHKSUM = "file://${S}/LICENCE;md5=3b83ef96387f14655fc854ddc3c6bd57"