From 8a2b6b4352ee8c8461700aa09e7187fdd6fa234f Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 13 Jun 2020 14:21:30 -0700 Subject: [PATCH] fix empty content in man page PDFs Commit 67a4546f95ae463db7cc3e6270d7fb32a848de7c inadvertently removed spaces in this makefile causing the Groff commands to silently fail. Fixes #1734. --- cmd/dot/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/dot/Makefile.am b/cmd/dot/Makefile.am index 480c45730..c4693e1c9 100644 --- a/cmd/dot/Makefile.am +++ b/cmd/dot/Makefile.am @@ -67,13 +67,13 @@ uninstall-hook: (cd $(DESTDIR)$(libdir); rm -f config;) dot.1.pdf: $(srcdir)/dot.1 - @GROFF@-Tps -man $(srcdir)/dot.1 | @PS2PDF@ - - >dot.1.pdf + @GROFF@ -Tps -man $(srcdir)/dot.1 | @PS2PDF@ - - >dot.1.pdf osage.1.pdf: $(srcdir)/osage.1 - @GROFF@-Tps -man $(srcdir)/osage.1 | @PS2PDF@ - - >osage.1.pdf + @GROFF@ -Tps -man $(srcdir)/osage.1 | @PS2PDF@ - - >osage.1.pdf patchwork.1.pdf: $(srcdir)/patchwork.1 - @GROFF@-Tps -man $(srcdir)/patchwork.1 | @PS2PDF@ - - >patchwork.1.pdf + @GROFF@ -Tps -man $(srcdir)/patchwork.1 | @PS2PDF@ - - >patchwork.1.pdf dot_static_SOURCES = dot.c dot_builtins.c dot_static_CPPFLAGS = $(AM_CPPFLAGS) -DDEMAND_LOADING=0 -- 2.40.0