From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#33580: Guix pull: building guix-manual.drv locale not fund Date: Sun, 02 Dec 2018 23:42:50 +0100 Message-ID: <874lbvk0t1.fsf@gnu.org> References: 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]:56827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gTaS7-0003ra-0T for bug-guix@gnu.org; Sun, 02 Dec 2018 17:43:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gTaS6-0003Nr-1R for bug-guix@gnu.org; Sun, 02 Dec 2018 17:43:02 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54222) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gTaS5-0003Ne-UU for bug-guix@gnu.org; Sun, 02 Dec 2018 17:43:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gTaS5-0007Cr-SB for bug-guix@gnu.org; Sun, 02 Dec 2018 17:43:01 -0500 Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Message-ID: In-Reply-To: (znavko's message of "Sun, 2 Dec 2018 15:56:28 +0100 (CET)") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: znavko@tutanota.com Cc: 33580-done@debbugs.gnu.org Hello, skribis: > # guix pull > guix ... adfb167 > ... > substitute: updating substitutes from 'https://mirror.hydra.gnu.org'... 1= 00.0% > building /gnu/store/abm71vz51xi6b3s5l0yqxr8i22yfzyam-guix-manual.drv... > sh: locale: command not found > sh: locale: command not found > sh: locale: command not found It=E2=80=99s arguably confusing but not a bug: =E2=80=98makeinfo=E2=80=99 (= which comes from Texinfo) tries to invoke the =E2=80=98locale=E2=80=99 command, which isn=E2= =80=99t available, hence this message. Specifically, this appears to come from xspara.c when a UTF-8 locale could not be installed: --8<---------------cut here---------------start------------->8--- /* Otherwise, look for any UTF-8 locale in the output of "locale -a". */ { FILE *p; char *line =3D 0; size_t n =3D 0; ssize_t ret; p =3D popen ("locale -a", "r"); --8<---------------cut here---------------end--------------->8--- This is now fixed in commit 2d337760501662f9a380a117312934e489bd5f1d. Not sure whether it makes a different on the =E2=80=98makeinfo=E2=80=99 out= put. Thanks, Ludo=E2=80=99.