[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"
- 06/13: maint: Generate AUTHORS and ChangeLog reproducibly., (continued)
- 06/13: maint: Generate AUTHORS and ChangeLog reproducibly., guix-commits, 2024/04/13
- 02/13: maint: Cater for running `make dist' from a worktree., guix-commits, 2024/04/13
- 08/13: maint: Use xgettext.scm wrapper to create .PO files reproducibly., guix-commits, 2024/04/13
- 09/13: maint: Use reproducible Git timestamp for POT-Creation-Date., guix-commits, 2024/04/13
- 12/13: maint: Reset CreationDate metadata on generated PDFs., guix-commits, 2024/04/13
- 05/13: maint: Help help2man generate reproducible man-pages., guix-commits, 2024/04/13
- 01/13: doc: Use "dejavu sans" instead of "Helvetica" or "sans" in dot images., guix-commits, 2024/04/13
- 03/13: maint: Use reproducible timestamps and name for tarball., guix-commits, 2024/04/13
- 07/13: maint: Generate 'doc/version-LANG.texi' reproducibly., guix-commits, 2024/04/13
- 10/13: maint: Avoid EPS generation to fail silently, ensure reproducibility., guix-commits, 2024/04/13
- 11/13: maint: Avoid PNG and PDF generation to fail silently.,
guix-commits <=
- 13/13: maint: Ensure generated file reproducibility for dist., guix-commits, 2024/04/13