From c3c7344826231d1b2c009dbb317d2373bbdf9ff3 Mon Sep 17 00:00:00 2001 From: Johan Korsnes Date: Thu, 29 Sep 2022 13:53:05 +0200 Subject: migration guides: 3.4: remove spurious space in example Cc: Richard Purdie Cc: Quentin Schulz Cc: Ross Burton (From yocto-docs rev: 1942514a3f5c1a9719aa21c143088e00074a6480) Signed-off-by: Johan Korsnes Reviewed-by: Michael Opdenacker Reviewed-by: Quentin Schulz Signed-off-by: Richard Purdie --- documentation/migration-guides/migration-3.4.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'documentation') 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:: SRC_URI_append = " file://somefile" SRC_URI_append_qemux86 = " file://somefile2" - SRC_URI_remove_qemux86-64 = " file://somefile3" + SRC_URI_remove_qemux86-64 = "file://somefile3" SRC_URI_prepend_qemuarm = "file://somefile4 " FILES_${PN}-ptest = "${bindir}/xyz" IMAGE_CMD_tar = "tar" @@ -34,7 +34,7 @@ would now become:: SRC_URI:append = " file://somefile" SRC_URI:append:qemux86 = " file://somefile2" - SRC_URI:remove:qemux86-64 = " file://somefile3" + SRC_URI:remove:qemux86-64 = "file://somefile3" SRC_URI:prepend:qemuarm = "file://somefile4 " FILES:${PN}-ptest = "${bindir}/xyz" IMAGE_CMD:tar = "tar" -- cgit v1.2.3-54-g00ecf