From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Patterson Subject: Re: Ecl Date: Sun, 31 Jul 2016 13:25:10 -0400 Message-ID: <20160731132510.2d368b95@uwaterloo.ca> References: <20160731100025.GA9786@solar> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/nxQ501hBNm27QceWiuoLp5B" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50544) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTuUL-0004Wv-Ny for guix-devel@gnu.org; Sun, 31 Jul 2016 13:25:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bTuUI-0007NO-Fq for guix-devel@gnu.org; Sun, 31 Jul 2016 13:25:21 -0400 Received: from mailservices.uwaterloo.ca ([129.97.128.141]:40508 helo=mailchk-m03.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTuUI-0007My-9U for guix-devel@gnu.org; Sun, 31 Jul 2016 13:25:18 -0400 Received: from localhost ([206.174.179.37]) (authenticated bits=0) by mailchk-m03.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id u6VHPAVq011153 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO) for ; Sun, 31 Jul 2016 13:25:13 -0400 In-Reply-To: <20160731100025.GA9786@solar> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --MP_/nxQ501hBNm27QceWiuoLp5B Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline On Sun, 31 Jul 2016 12:00:25 +0200 Andreas Enge wrote: > Yet another package which fails on all architectures: > http://hydra.gnu.org:3000/build/1313690 > If someone is interested in it, please have a look. This patch should address the issue. It's for core-updates. I've tested it locally. Andy --MP_/nxQ501hBNm27QceWiuoLp5B Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-ecl-Use-kernel-headers-instead-of-linux-headers-.patch >From 3306dfad4dbb2288a6a689596e3a14abac5a093b Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Sun, 31 Jul 2016 13:21:07 -0400 Subject: [PATCH] gnu: ecl: Use "kernel-headers" instead of "linux-headers" to designate input. * gnu/packages/lisp.scm (ecl)[arguments]: Use "kernel-headers" as the identifier for an input. This is a follow-up to commit 55de892b435657f82a25c6499174d09b4a680f15. --- gnu/packages/lisp.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 5c0df4e..1772780 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -148,7 +148,7 @@ interface to the Tk widget system.") `("CPATH" suffix ,(map (lambda (lib) (input-path lib "/include")) - `("linux-headers" ,@libraries))) + `("kernel-headers" ,@libraries))) `("LIBRARY_PATH" suffix ,library-directories) `("LD_LIBRARY_PATH" suffix ,library-directories))))) (add-after 'wrap 'check (assoc-ref %standard-phases 'check))))) -- 2.9.2 --MP_/nxQ501hBNm27QceWiuoLp5B--