diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-02-25 23:39:02 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-02-28 19:15:02 +0100 |
commit | b4037d82c0d30455ca9288e18a543dbb310476ac (patch) | |
tree | a4c024ddd2c81834e2bb464c9d3077cc9361c736 /gnu/packages/groff.scm | |
parent | 5466e82a1e61349e5a3f9726a03874e4f9817226 (diff) | |
download | guix-b4037d82c0d30455ca9288e18a543dbb310476ac.tar guix-b4037d82c0d30455ca9288e18a543dbb310476ac.tar.gz |
gnu: groff: Return #t from all phases.
* gnu/packages/groff.scm (groff)[arguments]: Return #t from phases.
Diffstat (limited to 'gnu/packages/groff.scm')
-rw-r--r-- | gnu/packages/groff.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm index cf4a884e04..98f17914bf 100644 --- a/gnu/packages/groff.scm +++ b/gnu/packages/groff.scm @@ -93,7 +93,8 @@ (add-after 'unpack 'fix-docdir (lambda _ ;see https://savannah.gnu.org/bugs/index.php?55461 (substitute* "Makefile.in" - (("^docdir =.*") "docdir = @docdir@\n"))))))) + (("^docdir =.*") "docdir = @docdir@\n")) + #t))))) (synopsis "Typesetting from plain text mixed with formatting commands") (description "Groff is a typesetting package that reads plain text and produces |