[PATCH] ref-manual/variables.rst: Correct the default value of FILESPATH
Peter Kjellerstedt <[email protected]>
| Newsgroups | org.yoctoproject.lists.docs |
|---|---|
| Message-ID | <[email protected]> |
It was recently changed to use oe.utils.base_set_filespath() instead of base_set_filespath(). Signed-off-by: Peter Kjellerstedt <[email protected]> --- documentation/ref-manual/variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index fa0dfdfb8..a6d36be52 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst @@ -3285,7 +3285,7 @@ system and gives an overview of their function and contents. :ref:`ref-classes-base` class found in ``meta/classes-global`` in :term:`OpenEmbedded-Core (OE-Core)`:: - FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${BP}", \ + FILESPATH = "${@oe.utils.base_set_filespath(["${FILE_DIRNAME}/${BP}", \ "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files"], d)}" The