diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-01-24 21:27:11 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-30 16:06:03 +0000 |
commit | 6578845f693dcd18adc98d161fe96875e7ca2e1e (patch) | |
tree | a63af3e3a858278448fdf6b10b55b0db01542ff8 /documentation/Makefile | |
parent | b5a4e78df5e98d1c0d03a36143d81f929b2f5aa2 (diff) | |
download | poky-6578845f693dcd18adc98d161fe96875e7ca2e1e.tar.gz |
documentation/Makefile: fixes for missing tarfiles
I had added some edison-specific figures and they needed to
be included in the TARFILE variable for the YP development manual.
The fix now makes the TARFILE variable all-inclusive for all
.PNG files regardless of branch. Consequently, there can be
some missing files when the manual is made but the errors are okay.
I documented the exceptions above the variable.
(From yocto-docs rev: be731afde47dfc85da6ba88f93910899ec259e87)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/Makefile')
-rw-r--r-- | documentation/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 21ffc50f37..02fe0a3e95 100644 --- a/documentation/Makefile +++ b/documentation/Makefile | |||
@@ -66,10 +66,18 @@ XSLTOPTS = --stringparam html.stylesheet style.css \ | |||
66 | --stringparam section.label.includes.component.label 1 \ | 66 | --stringparam section.label.includes.component.label 1 \ |
67 | --xinclude | 67 | --xinclude |
68 | ALLPREQ = html pdf tarball | 68 | ALLPREQ = html pdf tarball |
69 | TARFILES = style.css dev-manual.html dev-manual.pdf figures/bsp-dev-flow.png figures/dev-title.png \ | 69 | # |
70 | # Note that the tarfile might produce the "Cannot stat: No such file or directory" error | ||
71 | # message for .PNG files that are not present when building a particular branch. The | ||
72 | # list of files is all-inclusive for all branches. | ||
73 | # | ||
74 | TARFILES = style.css dev-manual.html dev-manual.pdf \ | ||
75 | figures/app-dev-flow.png figures/bsp-dev-flow.png figures/dev-title.png \ | ||
70 | figures/git-workflow.png figures/index-downloads.png figures/kernel-dev-flow.png \ | 76 | figures/git-workflow.png figures/index-downloads.png figures/kernel-dev-flow.png \ |
71 | figures/kernel-example-repos.png figures/kernel-overview-1.png figures/kernel-overview-2.png \ | 77 | figures/kernel-example-repos.png figures/kernel-example-repos-edison.png \ |
72 | figures/kernel-overview-3.png figures/source-repos.png figures/yp-download.png \ | 78 | figures/kernel-overview-1.png figures/kernel-overview-2.png \ |
79 | figures/kernel-overview-3.png figures/kernel-overview-3-edison.png \ | ||
80 | figures/source-repos.png figures/yp-download.png \ | ||
73 | figures/wip.png | 81 | figures/wip.png |
74 | MANUALS = $(DOC)/$(DOC).html $(DOC)/$(DOC).pdf | 82 | MANUALS = $(DOC)/$(DOC).html $(DOC)/$(DOC).pdf |
75 | FIGURES = figures | 83 | FIGURES = figures |