From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: bash-minimal: Assume getcwd works correctly when cross-compiling Date: Wed, 19 Oct 2016 17:33:13 +0200 Message-ID: <8760oo73ra.fsf@gnu.org> References: <7tpomxfxoe.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40949) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwsro-0003u3-JM for guix-devel@gnu.org; Wed, 19 Oct 2016 11:33:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwsrk-0008Up-Kx for guix-devel@gnu.org; Wed, 19 Oct 2016 11:33:20 -0400 In-Reply-To: <7tpomxfxoe.fsf@gmail.com> ("Carlos =?utf-8?Q?S=C3=A1nchez?= de La Lama"'s message of "Tue, 18 Oct 2016 18:07:29 +0200") 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: Carlos =?utf-8?Q?S=C3=A1nchez?= de La Lama Cc: guix-devel@gnu.org csanchezdll@gmail.com (Carlos S=C3=A1nchez de La Lama) skribis: > * gnu/packages/bash.scm (bash-minimal): Assume getcwd works correctly > when cross compiling. > --- > gnu/packages/bash.scm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm > index f3d8517..b07367c 100644 > --- a/gnu/packages/bash.scm > +++ b/gnu/packages/bash.scm > @@ -247,7 +247,8 @@ without modification.") > "--disable-nls" >=20=20 > ,@(if (%current-target-system) > - '("bash_cv_job_control_missing=3Dno") > + '("bash_cv_job_control_missing=3Dno" > + "bash_cv_getcwd_malloc=3Dyes") No tabs please. Otherwise LGTM, thanks! Ludo=E2=80=99.