diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-08-16 13:25:35 -0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-08-18 16:41:20 -0600 |
commit | 16dbe8042eb5df72ee761c24a383e4a5e11d540b (patch) | |
tree | fd89d62caaf9bd7501d80949f91d75bcfacaef0a /Documentation/Makefile.sphinx | |
parent | 505f711174b03f42bdfae1aa6cc191b26c157e94 (diff) |
docs-rst: fix a breakage when building PDF documents
changeset 606b9ac81a63 ("doc-rst: generic way to build only sphinx
sub-folders") accidentally broke PDF generation by adding an extra
")". Remove it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
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 ea0664cece12..fdef3a4bc8c7 100644 --- a/Documentation/Makefile.sphinx +++ b/Documentation/Makefile.sphinx @@ -71,7 +71,7 @@ ifeq ($(HAVE_PDFLATEX),0) $(warning The 'pdflatex' command was not found. Make sure you have it installed and in PATH to produce PDF output.) @echo " SKIP Sphinx $@ target." else # HAVE_PDFLATEX - @$(call loop_cmd,sphinx,latex,.,latex,.)) + @$(call loop_cmd,sphinx,latex,.,latex,.) $(Q)$(MAKE) -C $(BUILDDIR)/latex endif # HAVE_PDFLATEX |