From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7omL-00018q-B3 for guix-patches@gnu.org; Mon, 08 May 2017 15:57:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7omI-0004hV-4S for guix-patches@gnu.org; Mon, 08 May 2017 15:57:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57540) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7omI-0004hR-1o for guix-patches@gnu.org; Mon, 08 May 2017 15:57:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d7omH-0003Nk-RJ for guix-patches@gnu.org; Mon, 08 May 2017 15:57:05 -0400 Subject: bug#26843: [PATCH 3/3] gnu: sbcl: Add missing module imports Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33820) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7olQ-0000w6-6n for guix-patches@gnu.org; Mon, 08 May 2017 15:56:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7olM-0004Q9-W3 for guix-patches@gnu.org; Mon, 08 May 2017 15:56:12 -0400 Received: from smtp18.mail.ru ([94.100.176.155]:58570) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d7olM-0004NS-OM for guix-patches@gnu.org; Mon, 08 May 2017 15:56:08 -0400 From: Sergei Trofimovich Date: Mon, 8 May 2017 20:55:49 +0100 Message-Id: <20170508195549.23372-4-slyfox@inbox.ru> In-Reply-To: <20170508195549.23372-1-slyfox@inbox.ru> References: <20170508195549.23372-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: 26843@debbugs.gnu.org * gnu/packages/lisp.scm (sbck): Add missing modules to %modify-phases call. --- gnu/packages/lisp.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 2bbe39807..889073edb 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -284,7 +284,10 @@ an interpreter, a compiler, a debugger, and much more.") ("texlive" ,texlive) ("texinfo" ,texinfo))) (arguments - '(#:phases + '(#:modules ((guix build gnu-build-system) + (guix build utils) + (srfi srfi-1)) + #:phases (modify-phases %standard-phases (delete 'configure) (add-before 'build 'patch-unix-tool-paths -- 2.12.2