diff options
author | Ross Burton <ross.burton@intel.com> | 2019-10-15 11:28:36 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-15 14:17:58 +0100 |
commit | 52a625582e616aeb7a60411b58211e9fe1365863 (patch) | |
tree | 5f9f88113275187bbd5ecac99f0bdf31fc13ae21 /documentation/kernel-dev | |
parent | e2a0c001db2f9ec62ac1a784edf4c14fb98ef10c (diff) | |
download | poky-52a625582e616aeb7a60411b58211e9fe1365863.tar.gz |
kernel-dev: don't use _append +=
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev')
-rw-r--r-- | documentation/kernel-dev/kernel-dev-common.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml index 7d8826fa35..2ea5d3f38e 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml | |||
@@ -549,9 +549,9 @@ | |||
549 | <literallayout class='monospaced'> | 549 | <literallayout class='monospaced'> |
550 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | 550 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" |
551 | 551 | ||
552 | SRC_URI_append += "file://<replaceable>patch-file-one</replaceable>" | 552 | SRC_URI_append = " file://<replaceable>patch-file-one</replaceable>" |
553 | SRC_URI_append += "file://<replaceable>patch-file-two</replaceable>" | 553 | SRC_URI_append = " file://<replaceable>patch-file-two</replaceable>" |
554 | SRC_URI_append += "file://<replaceable>patch-file-three</replaceable>" | 554 | SRC_URI_append = " file://<replaceable>patch-file-three</replaceable>" |
555 | </literallayout> | 555 | </literallayout> |
556 | The | 556 | The |
557 | <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink> | 557 | <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink> |