From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#23970: colordiff glitch Date: Thu, 14 Jul 2016 14:55:39 +0200 Message-ID: <87a8hkidkk.fsf@gnu.org> References: <878tx5jjzg.fsf@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:4830:134:3::10]:43944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgBP-0008Ot-2A for bug-guix@gnu.org; Thu, 14 Jul 2016 08:56:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bNgBO-0007ya-4y for bug-guix@gnu.org; Thu, 14 Jul 2016 08:56:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38293) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgBO-0007yW-1Y for bug-guix@gnu.org; Thu, 14 Jul 2016 08:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1bNgBN-0007rf-Q9 for bug-guix@gnu.org; Thu, 14 Jul 2016 08:56:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: (Vincent Legoll's message of "Thu, 14 Jul 2016 11:17:17 +0200") 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: Vincent Legoll Cc: 23970@debbugs.gnu.org Vincent Legoll skribis: >>> during "guix package -i colordiff" I saw this error being reported: >>> >>> chown: invalid user: =E2=80=98root.root=E2=80=99 >>> Makefile:24: recipe for target 'install' failed >>> make: [install] Error 1 (ignored) >>> phase `install' succeeded after 0.1 seconds >>> >>> But it looks like it is harmless (at least from the guix install PoV) >> >> It=E2=80=99s indeed harmless and fine. > > The problem I saw here, was that a build *error* is ignored, even if > in this particular case it > is harmless. Or maybe chown is kind of special-cased when it is done > inside /gnu/store ? The error is purposefully ignored here: upstream=E2=80=99s Makefile explici= tly marks it as can be ignored, using a hyphen (info "(make) Errors"). And indeed, it makes a lot of sense to ignore this error with Guix since this operation is not permitted. Hope this clarifies things, Ludo=E2=80=99.