diff options
author | Kevin Strasser <kevin.strasser@linux.intel.com> | 2013-01-28 09:30:19 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-30 14:10:04 +0000 |
commit | e13a2ee08ba710effa2069b64fc41aef6c55207b (patch) | |
tree | 3fc3cbdf9f4e7933c4754404303bff9921553cf7 /documentation | |
parent | 9a7bd85ea27254df53f4f2d41343cb8d3ccce009 (diff) | |
download | poky-e13a2ee08ba710effa2069b64fc41aef6c55207b.tar.gz |
dev-manual: fix gpl source release example
The example doesn't account for an extra level of directories
that organise the sources by machine type.
(From yocto-docs rev: 844e8b8f28ab765e59fdbee40e00c973b1b00d89)
Signed-off-by: Kevin Strasser <kevin.strasser@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index e7d5d02f15..30751e319c 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -2968,7 +2968,7 @@ | |||
2968 | <literallayout class='monospaced'> | 2968 | <literallayout class='monospaced'> |
2969 | $ cd poky/build/tmp/deploy/sources | 2969 | $ cd poky/build/tmp/deploy/sources |
2970 | $ mkdir ~/gpl_source_release | 2970 | $ mkdir ~/gpl_source_release |
2971 | $ for x in `ls|grep GPL`; do cp -R $x/* ~/gpl_source_release; done | 2971 | $ for dir in */*GPL*; do cp -r $dir ~/gpl_source_release; done |
2972 | </literallayout> | 2972 | </literallayout> |
2973 | At this point, you could create a tarball from the | 2973 | At this point, you could create a tarball from the |
2974 | <filename>gpl_source_release</filename> directory and | 2974 | <filename>gpl_source_release</filename> directory and |