guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/13: maint: Avoid PNG and PDF generation to fail silently.


From: guix-commits
Subject: 11/13: maint: Avoid PNG and PDF generation to fail silently.
Date: Sat, 13 Apr 2024 06:23:39 -0400 (EDT)

janneke pushed a commit to branch wip-tarball
in repository guix.

commit dea17825e29ec9f167ffcca207225a3eb8c5e8d4
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Apr 6 14:08:22 2024 +0200

    maint: Avoid PNG and PDF generation to fail silently.
    
    * doc/local.mk (.dot.png): Split single shell command into separate recipe
    lines, prefixed by $(AM_V_at).
    (.dot.pdf): Likewise.
    
    Change-Id: I41fb856bb73f947abd91361ed203132e939f3897
---
 doc/local.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/local.mk b/doc/local.mk
index 19359760cc..d049dbf6d1 100644
--- a/doc/local.mk
+++ b/doc/local.mk
@@ -144,12 +144,12 @@ DOT_OPTIONS =                                     \
   -Nfontsize=9 -Nheight=.1 -Nwidth=.1
 
 .dot.png:
-       $(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
-       mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
+       $(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"
+       $(AM_V_at)mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
 
 .dot.pdf:
-       $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
-       mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
+       $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"
+       $(AM_V_at)mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
 
 .dot.eps:
        $(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]