From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d71pR-0004iB-Ud for guix-patches@gnu.org; Sat, 06 May 2017 11:41:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d71pO-0006yX-Hz for guix-patches@gnu.org; Sat, 06 May 2017 11:41:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60172) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d71pN-0006y3-VU for guix-patches@gnu.org; Sat, 06 May 2017 11:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d71pN-0002XP-Pp for guix-patches@gnu.org; Sat, 06 May 2017 11:41:01 -0400 Subject: bug#26805: [PATCH] gs-fonts: add missing podule imports Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38921) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d71p7-0004ho-Dt for guix-patches@gnu.org; Sat, 06 May 2017 11:40:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d71p4-0006c4-8z for guix-patches@gnu.org; Sat, 06 May 2017 11:40:45 -0400 Received: from smtp42.i.mail.ru ([94.100.177.102]:37064) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d71p3-0006aB-TC for guix-patches@gnu.org; Sat, 06 May 2017 11:40:42 -0400 From: Sergei Trofimovich Date: Sat, 6 May 2017 16:40:35 +0100 Message-Id: <20170506154035.23664-1-slyfox@inbox.ru> 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: 26805@debbugs.gnu.org On code-updates branch 'gs-fonts' build fails as: ice-9/psyntax.scm:1534:32: In procedure expand-macro: ice-9/psyntax.scm:1534:32: Syntax error: ...-gs-fonts-8.11-guile-builder:1:2300: source expression failed to match any pattern in form (%modify-phases phases* (delete (quote configure))) builder for `/gnu/store/...-gs-fonts-8.11.drv' failed with exit code 1 * gnu/packages/ghostscript.scm (gs-fonts): add missing modules to %modify-phases call: gnu-build-system, utils, srfi-1 Signed-off-by: Sergei Trofimovich --- gnu/packages/ghostscript.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 076046e72..33b8f51b6 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -273,6 +273,10 @@ architecture.") (build-system gnu-build-system) (arguments `(#:tests? #f ; nothing to check, just files to copy + + #:modules ((guix build gnu-build-system) + (guix build utils) + (srfi srfi-1)) #:phases (modify-phases %standard-phases (delete 'configure) -- 2.12.2