From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37744) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gia3w-00015E-9u for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gia3v-0008DF-Ec for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:58025) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gia3v-0008D9-BT for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gia3v-0002M0-75 for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:03 -0500 Subject: [bug#34057] [PATCH] core-updates -- gnu: groff: Fix doc installation. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:37616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gia3Y-00014Q-4w for guix-patches@gnu.org; Sun, 13 Jan 2019 02:19:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gia3X-0007yf-5n for guix-patches@gnu.org; Sun, 13 Jan 2019 02:19:40 -0500 Received: from mail.onyx.syn-alias.com ([206.152.134.66]:47177 helo=smtp.centurylink.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gia3X-0007w4-0K for guix-patches@gnu.org; Sun, 13 Jan 2019 02:19:39 -0500 From: ericbavier@centurylink.net Date: Sun, 13 Jan 2019 01:18:50 -0600 Message-Id: <20190113071850.14337-2-ericbavier@centurylink.net> In-Reply-To: <20190113071850.14337-1-ericbavier@centurylink.net> References: <20190113071850.14337-1-ericbavier@centurylink.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34057@debbugs.gnu.org Cc: Eric Bavier From: Eric Bavier * gnu/packages/groff.scm (groff)[arguments]: Add 'fix-docdir phase. --- gnu/packages/groff.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 =C2=A9 2016 Ricardo Wurmus ;;; Copyright =C2=A9 2017 Ludovic Court=C3=A8s ;;; Copyright =C2=A9 2019 Efraim Flashner +;;; Copyright =C2=A9 2019 Eric Bavier ;;; ;;; 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=3F55461 + (substitute* "Makefile.in" + (("^docdir =3D.*") "docdir =3D @docdir@\n"))))))) (synopsis "Typesetting from plain text mixed with formatting commands") (description "Groff is a typesetting package that reads plain text and produces -- 2.20.1