summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorStefan Wiehler <stefan.wiehler@missinglinkelectronics.com>2021-08-02 08:28:05 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 17:46:39 +0100
commit090384d9e74fddfdd38f4fd54b3dd39f5d5a8b24 (patch)
tree61617d3c1605727e12f00d0216f7e6160dc511bf /documentation
parentcf6c7026868c437dbe75d906cc75674c07f0255f (diff)
downloadpoky-090384d9e74fddfdd38f4fd54b3dd39f5d5a8b24.tar.gz
dev-manual: fix source release example script
(From yocto-docs rev: 6c939a3bbc9116d32c73df58f60ceb4809328eb3) Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/common-tasks.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst
index 5600076b7d..77af03b3ca 100644
--- a/documentation/dev-manual/common-tasks.rst
+++ b/documentation/dev-manual/common-tasks.rst
@@ -10929,7 +10929,7 @@ concerned with GPL code as identified by running the following script:
10929 p=${p%-*} 10929 p=${p%-*}
10930 # Only archive GPL packages (update *GPL* regex for your license check) 10930 # Only archive GPL packages (update *GPL* regex for your license check)
10931 numfiles=`ls tmp/deploy/licenses/$p/*GPL* 2> /dev/null | wc -l` 10931 numfiles=`ls tmp/deploy/licenses/$p/*GPL* 2> /dev/null | wc -l`
10932 if [ $numfiles -gt 1 ]; then 10932 if [ $numfiles -ge 1 ]; then
10933 echo Archiving $p 10933 echo Archiving $p
10934 mkdir -p $src_release_dir/$p/source 10934 mkdir -p $src_release_dir/$p/source
10935 cp $d/* $src_release_dir/$p/source 2> /dev/null 10935 cp $d/* $src_release_dir/$p/source 2> /dev/null