janneke pushed a commit to branch wip-tarball
in repository guix.
commit 96d64ad775d663d3522104830337e7f183e84894
Author: Janneke Nieuwenhuizen <[email protected]>
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)/[email protected]"; \
- mv "$(srcdir)/[email protected]" "$(srcdir)/$@"
+ $(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]"
+ $(AM_V_at)mv "$(srcdir)/[email protected]" "$(srcdir)/$@"
.dot.pdf:
- $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]"; \
- mv "$(srcdir)/[email protected]" "$(srcdir)/$@"
+ $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]"
+ $(AM_V_at)mv "$(srcdir)/[email protected]" "$(srcdir)/$@"
.dot.eps:
$(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]"