From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 15 07:39:47 2021 Received: (at 52505) by debbugs.gnu.org; 15 Dec 2021 12:39:47 +0000 Received: from localhost ([127.0.0.1]:60421 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mxTZS-0006D3-Vd for submit@debbugs.gnu.org; Wed, 15 Dec 2021 07:39:47 -0500 Received: from mail-io1-f49.google.com ([209.85.166.49]:34357) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mxTZO-0006Cj-Dy for 52505@debbugs.gnu.org; Wed, 15 Dec 2021 07:39:45 -0500 Received: by mail-io1-f49.google.com with SMTP id e128so29841644iof.1 for <52505@debbugs.gnu.org>; Wed, 15 Dec 2021 04:39:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=XZaiABQjkSdofgOZveQTbt+x2BsmdVPclYn1RLJbwYo=; b=byCTIDDQQLEYSagGumRefSTCVyZf+9YsGOivuSv7M8aP0HcmlXFiQAoPAaYYziZpab HRR2ttg/FarPCWc+ordJ+sWcBvR7n/LBe653K364Pg3OmTH0V64yQ7KqqlpZt739/Bjk APrbicMulRyR/Hwp03pTWDkmC+zl2Yux+9MGGZyxxvlvPZbKm0CFTKVkzvX4gzPJVleW uV8sh30y26mJfCEGIsZR/LmX9p5ipFijNDHrzJh3v60ZqH+/aA1D/O+HQik3dR9aPIqQ AXGPiwwQ5DwX0QHy26/N91E5HE5R5ZPdx6N4Vtec1QzAzMsaIkyrJOSrdi63BNyixHaV Rbtg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=XZaiABQjkSdofgOZveQTbt+x2BsmdVPclYn1RLJbwYo=; b=Sf8CdXFoldEoqvfmtjj9nDfekbyFBZWBhkBs4Q9GmGOxRM5AY8irm1IgXPgYSp+1OG VHP1vsjmxAecGxA2hy5SRMYA09TqVbkNNwXpd0qdzGmteJgSZoHqkchxLvXy5gQ2fyjD I8gG1fjsxRix6ruquppGFmNSgq1kBGhAa7EfqGb2E7t9n5P1cEWM2xz3kuGgoGp4i3te QF9J7UTNXXOlbXLKJ5zbMceZZWzpx8v/73wotS/24czd9zRM5IMvAdBHAMGQ3K2hGvUC Cye2ms3eSWNoBjG9FgtXHBpzzoC6wS/E/FgGl/XniaPCsoVwqhT8fbRE7bzzleYl6quf XTsA== X-Gm-Message-State: AOAM533wGuK7Qax4uk8HvCMGepSzA8epbMwIr8Jj0Ri22hcQA3j+Phkq Ac60bPwOPRfCbNw7NantsA9CJAJGEGL0Vd9nakQ= X-Google-Smtp-Source: ABdhPJwhqECrxhBPPd6jHwzlvPAcGbVEf9lRfi286yvfcsfWVCR0Oj00pdOc4rPNGyKiyiwMZSyzZVFCPzXtxzccfiI= X-Received: by 2002:a02:1608:: with SMTP id a8mr5560664jaa.654.1639571976725; Wed, 15 Dec 2021 04:39:36 -0800 (PST) MIME-Version: 1.0 References: <20211215112040.25851-1-jgart@dismail.de> <20211215112040.25851-2-jgart@dismail.de> In-Reply-To: <20211215112040.25851-2-jgart@dismail.de> From: zimoun Date: Wed, 15 Dec 2021 13:39:25 +0100 Message-ID: Subject: Re: [bug#52505] [PATCH 2/2] doc: Mention how to remedy "source file ... newer than compiled error". To: jgart Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 52505 Cc: 52505@debbugs.gnu.org, Julien Lepiller , Ryan Prior , Blake Shaw X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, On Wed, 15 Dec 2021 at 12:36, jgart via Guix-patches via wrote: > > From: Guix Together > > * doc/contributing.texi (Running Guix Before It Is Installed): Mention > how to remedy "source file ... newer than compiled" error by running > `make -j`. > > Co-authored-by: jgart > Co-authored-by: Julien Lepiller > Co-authored-by: Ryan Prior > Co-authored-by: Blake Shaw > --- > doc/contributing.texi | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) Cool! > +the message by running @command{make -j}. Until you do, Guile will run [...] > +@command{watchexec -w gnu/packages make -j}. Personally, I would not recommand inside the manual the command "make -j", but instead "make" or "make -j4" (4 or whatever number); as it was done in "guix environment" section [1]. 1: Cheers, simon