Message ID | 20220929115305.254957-1-johan.korsnes@remarkable.no |
---|---|
State | Accepted |
Commit | 1942514a3f5c1a9719aa21c143088e00074a6480 |
Headers | show |
Series | migration guides: 3.4: remove spurious space in example | expand |
Hi Johan, On 9/29/22 1:53 PM, Johan Korsnes <johan.korsnes@remarkable.no> wrote: > Cc: Richard Purdie <richard.purdie@linuxfoundation.org> > Cc: Quentin Schulz <quentin.schulz@theobroma-systems.com> > Cc: Ross Burton <ross.burton@arm.com> > Signed-off-by: Johan Korsnes <johan.korsnes@remarkable.no> Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Thanks! Quentin > --- > documentation/migration-guides/migration-3.4.rst | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/documentation/migration-guides/migration-3.4.rst b/documentation/migration-guides/migration-3.4.rst > index bc2c75d42..8e0eb3b63 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" >
Johan, Quentin, On 29.09.22 14:03, Quentin Schulz via lists.yoctoproject.org wrote: > Hi Johan, > > On 9/29/22 1:53 PM, Johan Korsnes <johan.korsnes@remarkable.no> wrote: >> Cc: Richard Purdie <richard.purdie@linuxfoundation.org> >> Cc: Quentin Schulz <quentin.schulz@theobroma-systems.com> >> Cc: Ross Burton <ross.burton@arm.com> >> Signed-off-by: Johan Korsnes <johan.korsnes@remarkable.no> > > Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Many thanks for the patch (good catch!) and review. Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> ... and merged into master next.
diff --git a/documentation/migration-guides/migration-3.4.rst b/documentation/migration-guides/migration-3.4.rst index bc2c75d42..8e0eb3b63 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"
Cc: Richard Purdie <richard.purdie@linuxfoundation.org> Cc: Quentin Schulz <quentin.schulz@theobroma-systems.com> Cc: Ross Burton <ross.burton@arm.com> Signed-off-by: Johan Korsnes <johan.korsnes@remarkable.no> --- documentation/migration-guides/migration-3.4.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)