diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2016-11-02 15:37:11 +0100 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2016-11-03 11:36:56 +0100 |
commit | 0af205ea6c35ad540d638351ce37457e3ee2bac8 (patch) | |
tree | 8f31c313fe9294c521dbf3e58e6be477d724ab31 /Documentation/Makefile.sphinx | |
parent | Documentation/sphinx: change pdflatex interaction mode to batchmode (diff) | |
download | linux-0af205ea6c35ad540d638351ce37457e3ee2bac8.tar.xz linux-0af205ea6c35ad540d638351ce37457e3ee2bac8.zip |
Documentation/sphinx: fix make SPHINXDIRS="dirs" pdfdocs for more than one dir
Add missing semicolon to fix pdf build with more than one SPHINXDIRS
directory specified. For example make SPHINXDIRS="gpu media" pdfdocs.
Fixes: cd21379b1698 ("doc-rst: generic way to build PDF of sub-folders")
Signed-off-by: Markus Heiser <markus.heiser@darmarIT.de>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'Documentation/Makefile.sphinx')
-rw-r--r-- | Documentation/Makefile.sphinx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile.sphinx b/Documentation/Makefile.sphinx index d58d776d8d00..ec0c77d028db 100644 --- a/Documentation/Makefile.sphinx +++ b/Documentation/Makefile.sphinx @@ -80,7 +80,7 @@ pdfdocs: else # HAVE_PDFLATEX pdfdocs: latexdocs - $(foreach var,$(SPHINXDIRS), $(MAKE) PDFLATEX=$(PDFLATEX) LATEXOPTS="$(LATEXOPTS)" -C $(BUILDDIR)/$(var)/latex) + $(foreach var,$(SPHINXDIRS), $(MAKE) PDFLATEX=$(PDFLATEX) LATEXOPTS="$(LATEXOPTS)" -C $(BUILDDIR)/$(var)/latex;) endif # HAVE_PDFLATEX |