mk: reduce PDF build commands
authorThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 2 Apr 2015 16:14:23 +0000 (18:14 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 3 Apr 2015 14:13:36 +0000 (16:13 +0200)
In case of documents without image, an empty rm command can be seen if V=1.
Remove it to avoid disturbing debugging.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Siobhan Butler <siobhan.a.butler@intel.com>
mk/rte.sdkdoc.mk

index f91e079..9952f25 100644 (file)
@@ -99,7 +99,7 @@ guides-pdf-%:
        $(Q)$(RTE_SPHINX_BUILD) -b latex $(RTE_SPHINX_VERBOSE) \
                -c $(RTE_SDK)/doc/guides $(RTE_SDK)/doc/guides/$* \
                $(RTE_OUTPUT)/doc/pdf/guides/$*
-       $(Q)rm -f $^
+       $(if $^,$(Q)rm -f $^)
        @echo 'pdflatex processing $@...'
        $(Q)$(MAKE) all-pdf -sC $(RTE_OUTPUT)/doc/pdf/guides/$* \
                LATEXOPTS=$(RTE_PDFLATEX_VERBOSE)