From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Hinsen Subject: bug#27080: =?UTF-8?Q?=C2=A8make?= install" fails because of missing gawk Date: Fri, 26 May 2017 09:18:33 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47245) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dE9Wc-0006FQ-TB for bug-guix@gnu.org; Fri, 26 May 2017 03:19:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dE9WY-0007pC-UP for bug-guix@gnu.org; Fri, 26 May 2017 03:19:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35864) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dE9WY-0007p3-QK for bug-guix@gnu.org; Fri, 26 May 2017 03:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dE9WY-0002SW-IH for bug-guix@gnu.org; Fri, 26 May 2017 03:19:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47166) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dE9WE-0006Dm-Up for bug-guix@gnu.org; Fri, 26 May 2017 03:18:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dE9WA-0007YI-Vm for bug-guix@gnu.org; Fri, 26 May 2017 03:18:42 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:54129) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dE9WA-0007UQ-DT for bug-guix@gnu.org; Fri, 26 May 2017 03:18:38 -0400 Content-Language: en-US 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: 27080@debbugs.gnu.org I am trying to build/install Guix 0.13 from sources (git checkout), using a binary installation of a slightly earlier Guix in a Ubuntu 16.04 host system. Basically I am doing git checkout v0.13.0 guix environment guix make check make install I have also tried with this the most recent commit on master, with the same failure. The trouble starts here: ... Compiling Scheme modules... guile: warning: failed to install locale /gnu/store/2kgp5d4wh40b49gp4qwqh2b4il29gq6g-profile/bin/mkdir -p '/opt/guix/share/man/man1' /gnu/store/2kgp5d4wh40b49gp4qwqh2b4il29gq6g-profile/bin/install -c -m 644 ./doc/guix.1 ./doc/guix-archive.1 ./doc/guix-build.1 ./doc/guix-challenge.1 ./doc/guix-download.1 ./doc/guix-edit.1 ./doc/guix-environment.1 ./doc/guix-gc.1 ./doc/guix-hash.1 ./doc/guix-import.1 ./doc/guix-lint.1 ./doc/guix-package.1 ./doc/guix-publish.1 ./doc/guix-pull.1 ./doc/guix-refresh.1 ./doc/guix-size.1 ./doc/guix-system.1 ./doc/guix-daemon.1 '/opt/guix/share/man/man1' /gnu/store/2kgp5d4wh40b49gp4qwqh2b4il29gq6g-profile/bin/mkdir -p '/opt/guix/share/guile/site/2.2' /bin/bash: line 5: gawk: command not found sed: couldn't write 47 items to stdout: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe ... I get lots of copies of these "Broken pipe" lines. Then: ... /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /gnu/store/2kgp5d4wh40b49gp4qwqh2b4il29gq6g-profile/bin/mkdir -p '/opt/guix/share/guile/site/2.2' /bin/bash: line 5: gawk: command not found sed: couldn't flush stdout: Broken pipe /gnu/store/2kgp5d4wh40b49gp4qwqh2b4il29gq6g-profile/bin/mkdir -p '/opt/guix/lib/guile/2.2/site-ccache' /bin/bash: line 5: gawk: command not found sed: couldn't write 47 items to stdout: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe /bin/bash: line 5: echo: write error: Broken pipe ... and another round of broken pipes. But the initial problem seems to be that gawk is not found. It is available in my build environment, but apparently that's not where it is looked for. Konrad.