From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: How to force rebuilding a pacakge? Date: Thu, 02 Jun 2016 23:12:11 +0200 Message-ID: <871t4f2t3o.fsf@gnu.org> References: <57502D46.3020607@crazy-compilers.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]:41573) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8Zuc-0000Cy-S9 for help-guix@gnu.org; Thu, 02 Jun 2016 17:12:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8ZuZ-0002nd-LZ for help-guix@gnu.org; Thu, 02 Jun 2016 17:12:18 -0400 In-Reply-To: <57502D46.3020607@crazy-compilers.com> (Hartmut Goebel's message of "Thu, 2 Jun 2016 14:57:42 +0200") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Hartmut Goebel Cc: help-guix@gnu.org Hi! Hartmut Goebel skribis: > - guix build --check =E2=80=A6 does not provide a meaningful build log Note that, when grafts are applicable to a package, =E2=80=98guix build the-package=E2=80=99 builds the derivation that grafts the package, not the derivation that builds the original package. Similarly, =E2=80=98guix build --check the-package=E2=80=99 rebuilds the de= rivation that grafts the package, not the derivation that builds the original package. Instead, you may want to use =E2=80=98guix build --check --no-grafts the-package=E2=80=99 to actually rebuild the original package. Likewise for the build log of the original package: =E2=80=98guix build --log-file --no-grafts the-package=E2=80=99. HTH, Ludo=E2=80=99.