diff options
author | Andrei Gherzan <andrei.gherzan@windriver.com> | 2014-08-13 09:50:05 +0200 |
---|---|---|
committer | Andrei Gherzan <andrei.gherzan@windriver.com> | 2014-08-13 09:50:08 +0200 |
commit | 1b19d81f075c41186614eb587ed2c49bba256c83 (patch) | |
tree | 7838e90cf25418a5cfb8bdb1bda641310ef47148 /meta-ivi-bsp | |
parent | a9cde8086056166cfa6ec1aa730afb33fd495e8d (diff) | |
download | meta-ivi-1b19d81f075c41186614eb587ed2c49bba256c83.tar.gz meta-ivi-1b19d81f075c41186614eb587ed2c49bba256c83.tar.bz2 meta-ivi-1b19d81f075c41186614eb587ed2c49bba256c83.zip |
Use FILESEXTRAPATHS correctly
Avoid incorrect assignments and use FILESEXTRAPATHS-variable with _prepend or
_append.
WARNING: FILESEXTRAPATHS-variable, must always use _prepend (or _append)
type of assignment, and don't forget the colon.
Please assign it with the format of:
FILESEXTRAPATHS_append := ":${THISDIR}/Your_Files_Path" or
FILESEXTRAPATHS_prepend := "${THISDIR}/Your_Files_Path:"
in your bbappend file
Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com>
Diffstat (limited to 'meta-ivi-bsp')
3 files changed, 3 insertions, 3 deletions
diff --git a/meta-ivi-bsp/recipes-bsp/u-boot/u-boot_2013.07.bbappend b/meta-ivi-bsp/recipes-bsp/u-boot/u-boot_2013.07.bbappend index 672a019..d33c17d 100644 --- a/meta-ivi-bsp/recipes-bsp/u-boot/u-boot_2013.07.bbappend +++ b/meta-ivi-bsp/recipes-bsp/u-boot/u-boot_2013.07.bbappend @@ -1,5 +1,5 @@ # Find "files" directory -FILESEXTRAPATHS := "${THISDIR}/files" +FILESEXTRAPATHS_append := ":${THISDIR}/files" # Patch for removing autostart countdown SRC_URI_append_imx53qsb += "file://no_delay.patch" diff --git a/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.10.bbappend b/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.10.bbappend index 7aaad58..11629d8 100644 --- a/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.10.bbappend +++ b/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.10.bbappend @@ -1,5 +1,5 @@ # find defconfig path -FILESEXTRAPATHS := "${THISDIR}/${PN}" +FILESEXTRAPATHS_append := ":${THISDIR}/${PN}" # Kernel configs SRC_URI_append_beagleboard = " \ diff --git a/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.4.bbappend b/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.4.bbappend index 7aaad58..11629d8 100644 --- a/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.4.bbappend +++ b/meta-ivi-bsp/recipes-kernel/linux/linux-yocto_3.4.bbappend @@ -1,5 +1,5 @@ # find defconfig path -FILESEXTRAPATHS := "${THISDIR}/${PN}" +FILESEXTRAPATHS_append := ":${THISDIR}/${PN}" # Kernel configs SRC_URI_append_beagleboard = " \ |