summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/variables.rst
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2022-02-27 19:24:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-04 09:39:37 +0000
commit865e1505998d75669462d3b5d400885f07625e10 (patch)
tree008c30c48afb8b9d7a306fed1b2f4c685e3a3cc2 /documentation/ref-manual/variables.rst
parent99a5b42d5cef91b4238e641a2c53c0c44f1e9ca9 (diff)
downloadpoky-865e1505998d75669462d3b5d400885f07625e10.tar.gz
manuals: Update LICENSE vars in examples to use SPDX license identifiers
This is similar to the recent change in meta to only use SPDX license identifiers in the recipes. (From yocto-docs rev: 147ce973d08f0bfb59b7b87fec8c8cc997d57112) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/variables.rst')
-rw-r--r--documentation/ref-manual/variables.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index ecb2b60c73..1621e5419e 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -4348,9 +4348,9 @@ system and gives an overview of their function and contents.
4348 4348
4349 Here are some examples:: 4349 Here are some examples::
4350 4350
4351 LICENSE = "LGPLv2.1 | GPLv3" 4351 LICENSE = "LGPL-2.1-only | GPL-3.0-only"
4352 LICENSE = "MPL-1 & LGPLv2.1" 4352 LICENSE = "MPL-1.0 & LGPL-2.1-only"
4353 LICENSE = "GPLv2+" 4353 LICENSE = "GPL-2.0-or-later"
4354 4354
4355 The first example is from the 4355 The first example is from the
4356 recipes for Qt, which the user may choose to distribute under either 4356 recipes for Qt, which the user may choose to distribute under either
@@ -4365,8 +4365,8 @@ system and gives an overview of their function and contents.
4365 but has accompanying documentation licensed under the GNU Free 4365 but has accompanying documentation licensed under the GNU Free
4366 Documentation License 1.2 could be specified as follows:: 4366 Documentation License 1.2 could be specified as follows::
4367 4367
4368 LICENSE = "GFDL-1.2 & GPLv2" 4368 LICENSE = "GFDL-1.2 & GPL-2.0-only"
4369 LICENSE:${PN} = "GPLv2" 4369 LICENSE:${PN} = "GPL-2.0.only"
4370 LICENSE:${PN}-doc = "GFDL-1.2" 4370 LICENSE:${PN}-doc = "GFDL-1.2"
4371 4371
4372 :term:`LICENSE_CREATE_PACKAGE` 4372 :term:`LICENSE_CREATE_PACKAGE`