summaryrefslogtreecommitdiffstats
path: root/documentation/migration-guides
diff options
context:
space:
mode:
authorJohan Korsnes <johan.korsnes@remarkable.no>2022-09-29 13:53:05 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-07 10:54:25 +0100
commitc3c7344826231d1b2c009dbb317d2373bbdf9ff3 (patch)
tree947b68abfd7f11fc329cf7f45c609e20f5ab9b55 /documentation/migration-guides
parent5200799866b92259e855051112520006e1aaaac0 (diff)
downloadpoky-c3c7344826231d1b2c009dbb317d2373bbdf9ff3.tar.gz
migration guides: 3.4: remove spurious space in example
Cc: Richard Purdie <richard.purdie@linuxfoundation.org> Cc: Quentin Schulz <quentin.schulz@theobroma-systems.com> Cc: Ross Burton <ross.burton@arm.com> (From yocto-docs rev: 1942514a3f5c1a9719aa21c143088e00074a6480) Signed-off-by: Johan Korsnes <johan.korsnes@remarkable.no> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/migration-guides')
-rw-r--r--documentation/migration-guides/migration-3.4.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/migration-guides/migration-3.4.rst b/documentation/migration-guides/migration-3.4.rst
index bc2c75d42e..8e0eb3b639 100644
--- a/documentation/migration-guides/migration-3.4.rst
+++ b/documentation/migration-guides/migration-3.4.rst
@@ -22,7 +22,7 @@ syntax, so the following::
22 22
23 SRC_URI_append = " file://somefile" 23 SRC_URI_append = " file://somefile"
24 SRC_URI_append_qemux86 = " file://somefile2" 24 SRC_URI_append_qemux86 = " file://somefile2"
25 SRC_URI_remove_qemux86-64 = " file://somefile3" 25 SRC_URI_remove_qemux86-64 = "file://somefile3"
26 SRC_URI_prepend_qemuarm = "file://somefile4 " 26 SRC_URI_prepend_qemuarm = "file://somefile4 "
27 FILES_${PN}-ptest = "${bindir}/xyz" 27 FILES_${PN}-ptest = "${bindir}/xyz"
28 IMAGE_CMD_tar = "tar" 28 IMAGE_CMD_tar = "tar"
@@ -34,7 +34,7 @@ would now become::
34 34
35 SRC_URI:append = " file://somefile" 35 SRC_URI:append = " file://somefile"
36 SRC_URI:append:qemux86 = " file://somefile2" 36 SRC_URI:append:qemux86 = " file://somefile2"
37 SRC_URI:remove:qemux86-64 = " file://somefile3" 37 SRC_URI:remove:qemux86-64 = "file://somefile3"
38 SRC_URI:prepend:qemuarm = "file://somefile4 " 38 SRC_URI:prepend:qemuarm = "file://somefile4 "
39 FILES:${PN}-ptest = "${bindir}/xyz" 39 FILES:${PN}-ptest = "${bindir}/xyz"
40 IMAGE_CMD:tar = "tar" 40 IMAGE_CMD:tar = "tar"