diff options
author | Eric Bavier <[email protected]> | 2019-01-13 01:03:24 -0600 |
---|---|---|
committer | Eric Bavier <[email protected]> | 2019-01-14 15:34:54 -0600 |
commit | 2df4f7020d2c49110900f786af7700d170c3035c (patch) | |
tree | be5a8c7f9a4c3b5e1c8e10042002acd6c98626c0 /gnu/packages/groff.scm | |
parent | a9883939977f5fb0bd62d1dccb1ab0a772a4b720 (diff) |
gnu: groff: Fix doc installation.
* gnu/packages/groff.scm (groff)[arguments]: Add 'fix-docdir phase.
Diffstat (limited to 'gnu/packages/groff.scm')
-rw-r--r-- | gnu/packages/groff.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm index 9bf8662b9f..a8a31337c8 100644 --- a/gnu/packages/groff.scm +++ b/gnu/packages/groff.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2016 Ricardo Wurmus <[email protected]> ;;; Copyright © 2017 Ludovic Courtès <[email protected]> ;;; Copyright © 2019 Efraim Flashner <[email protected]> +;;; Copyright © 2019 Eric Bavier <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -65,7 +66,11 @@ (add-after 'unpack 'setenv (lambda _ (setenv "GS_GENERATE_UUIDS" "0") - #t))))) + #t)) + (add-after 'unpack 'fix-docdir + (lambda _ ;see https://savannah.gnu.org/bugs/index.php?55461 + (substitute* "Makefile.in" + (("^docdir =.*") "docdir = @docdir@\n"))))))) (synopsis "Typesetting from plain text mixed with formatting commands") (description "Groff is a typesetting package that reads plain text and produces |