From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: Re: 15/33: gnu: coreutils: Remove libcap dependency for the Hurd. Date: Tue, 10 Mar 2020 10:06:16 +0100 Message-ID: <87r1y0wpdj.fsf@gnu.org> References: <20200310075832.7126.86402@vcs0.savannah.gnu.org> <20200310075847.6059A2112F@vcs0.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:42250) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jBaqG-0008CN-2t for guix-devel@gnu.org; Tue, 10 Mar 2020 05:06:24 -0400 In-Reply-To: <20200310075847.6059A2112F@vcs0.savannah.gnu.org> (guix-commits@gnu.org's message of "Tue, 10 Mar 2020 03:58:47 -0400 (EDT)") 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-mx.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org, Jan Nieuwenhuizen guix-commits@gnu.org skribis: > commit ae159bde64917511d345cd2e1dd1feabe5f73b72 > Author: Jan Nieuwenhuizen > AuthorDate: Sat Mar 7 03:53:38 2020 -0500 > > gnu: coreutils: Remove libcap dependency for the Hurd. >=20=20=20=20=20 > * gnu/packages/base.scm (coreutils)[inputs]: Remove libcap for the Hu= rd. > --- > gnu/packages/base.scm | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm > index 9f1477b..4b347a7 100644 > --- a/gnu/packages/base.scm > +++ b/gnu/packages/base.scm > @@ -304,7 +304,9 @@ used to apply commands with arbitrarily long argument= s.") >=20=20 > ;; Drop the dependency on libcap when cross-compiling since= it's > ;; not quite cross-compilable. > - ,@(if (%current-target-system) > + ;; Also, libcap is not available on the Hurd. > + ,@(if (or (%current-target-system) > + (hurd-target?)) Perhaps we=E2=80=99d also need something based on =E2=80=98supported-platfo= rms=E2=80=99 here. (Not a blocker, though.) Ludo=E2=80=99.