This fixes a copy-n-paste error. <PKG>_LICENSE_FILES is supposed to contain a list of files, not <PKG>_LICENSE.
Signed-off-by: Uwe Kleine-König <[email protected]> --- doc/dev_licenses.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/dev_licenses.rst b/doc/dev_licenses.rst index 0bb1c8d77c5e..6aed9daaca97 100644 --- a/doc/dev_licenses.rst +++ b/doc/dev_licenses.rst @@ -195,7 +195,7 @@ Adding license files to PTXdist packages The SPDX license identifier of the package goes into the ``<PKG>_LICENSE`` variable in the respective package rule file. -All relevant files identified in the steps above are then added to the variable ``<PKG>_LICENSE``, +All relevant files identified in the steps above are then added to the variable ``<PKG>_LICENSE_FILES``, including a checksum so that PTXdist complains when they change. Example: -- 2.39.0
