From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manolis Ragkousis Subject: [PATCH 2/2] gnu: glibc-hurd-headers: Use correct "--host". Date: Thu, 2 Jun 2016 13:30:40 +0300 Message-ID: <2adb791a-e653-e0f3-681a-4015e3f9c035@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------417CF5C7B3D747939B846120" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8Ptq-0003Fx-M2 for guix-devel@gnu.org; Thu, 02 Jun 2016 06:30:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8Pto-0008Sm-NT for guix-devel@gnu.org; Thu, 02 Jun 2016 06:30:49 -0400 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 This is a multi-part message in MIME format. --------------417CF5C7B3D747939B846120 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hello, This patch applies to core-updates. It's a patch from wip-hurd. Manolis --------------417CF5C7B3D747939B846120 Content-Type: text/x-patch; name="0002-gnu-glibc-hurd-headers-Use-correct-host.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0002-gnu-glibc-hurd-headers-Use-correct-host.patch" >From a5903258e30a6b61f679e7f99b9b23992d79ce25 Mon Sep 17 00:00:00 2001 From: Manolis Ragkousis Date: Thu, 2 Jun 2016 12:49:30 +0300 Subject: [PATCH 2/2] gnu: glibc-hurd-headers: Use correct "--host". * gnu/packages/base.scm (glibc/hurd-headers)[arguments]: Use "i586-pc-gnu" instead of "i686-pc-gnu". --- gnu/packages/base.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index b7ab7f1..689ab2d 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -825,7 +825,7 @@ command.") ;; We just pass the flags really needed to build the headers. ((#:configure-flags _) `(list "--enable-add-ons" - "--host=i686-pc-gnu" + "--host=i586-pc-gnu" "--enable-obsolete-rpc")) ((#:phases _) '(alist-replace -- 2.8.2 --------------417CF5C7B3D747939B846120--