diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-16 12:29:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-30 22:52:19 +0100 |
commit | f735627e7c5aeb421338db55f3905d74751d4b71 (patch) | |
tree | 8aaf99c5d7d0deeffb8f1bb228e5a25179379fc3 /documentation | |
parent | d664794cce1605e046d45a3cb64f5e019a0b2e5a (diff) | |
download | poky-f735627e7c5aeb421338db55f3905d74751d4b71.tar.gz |
common-tasks: Fix conversion error in npm example
(From yocto-docs rev: a6441aa5765be4a121a45ede94ca6d4c6fedf4ef)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index 9a6f4e1a8e..5600076b7d 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -7288,7 +7288,8 @@ The ``devtool edit-recipe`` command lets you take a look at the recipe:: | |||
7288 | npmsw://${THISDIR}/${BPN}/npm-shrinkwrap.json \ | 7288 | npmsw://${THISDIR}/${BPN}/npm-shrinkwrap.json \ |
7289 | " | 7289 | " |
7290 | S = "${WORKDIR}/npm" | 7290 | S = "${WORKDIR}/npm" |
7291 | inherit npm LICENSE_${PN} = "MIT" | 7291 | inherit npm |
7292 | LICENSE_${PN} = "MIT" | ||
7292 | LICENSE_${PN}-accepts = "MIT" | 7293 | LICENSE_${PN}-accepts = "MIT" |
7293 | LICENSE_${PN}-array-flatten = "MIT" | 7294 | LICENSE_${PN}-array-flatten = "MIT" |
7294 | ... | 7295 | ... |