From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: 28.1: errors about missing git executable Date: Sat, 09 Apr 2022 10:09:54 +0300 Message-ID: <8335imag1p.fsf@gnu.org> References: <87a6cvei6j.fsf@telefonica.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="18899"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: =?utf-8?Q?=C3=93scar?= Fuentes Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Apr 09 09:10:24 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nd5Em-0004mu-SX for ged-emacs-devel@m.gmane-mx.org; Sat, 09 Apr 2022 09:10:24 +0200 Original-Received: from localhost ([::1]:43274 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nd5El-0008GS-EM for ged-emacs-devel@m.gmane-mx.org; Sat, 09 Apr 2022 03:10:23 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:39976) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nd5E7-0007a5-94 for emacs-devel@gnu.org; Sat, 09 Apr 2022 03:09:43 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:40598) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nd5E6-0003bx-CH; Sat, 09 Apr 2022 03:09:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=+YHSZAvWWHNtAN5UZc/gDVgg0LKF76uQpwnZu/cJum0=; b=rIYA9lejMHTFn2CoVj7I fUFA9DAzgQEBryM9KZM+en+Z8mNVQMByxqnb6ydSWgrQvOhM93tqy+PJxfyGN0g9cQRQHf2oqyFwC AjKIY2lsK6qQucLCBNwUuWnDOBD9TcJTyvCLc4qBDSV0iFeo2h1N/w9vcF80zYwvwRlg6N09FqLkM rSi1N56iciB0KK5UHpDFHwZaKOFgf4tVcxb4JjiXINSXwl2MOKeSyTyhiDeq5G/PBukSpXyWPqpyf EzFpR5pI9qyEkHiE4ow7lNpGQhdGboqqKIFsw/7Ti2tAisCbshWUJD+/LS783d+BN3WnMawL2f2Dg Y8n+sP5ReofXnw==; Original-Received: from [87.69.77.57] (port=1559 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nd5E4-00012g-EW; Sat, 09 Apr 2022 03:09:40 -0400 In-Reply-To: <87a6cvei6j.fsf@telefonica.net> (message from =?utf-8?Q?=C3=93scar?= Fuentes on Fri, 08 Apr 2022 16:57:56 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:288001 Archived-At: > From: Óscar Fuentes > Date: Fri, 08 Apr 2022 16:57:56 +0200 > > While building 28.1 from the source tar package I see lots of mentions > to missing git: > > ELN ../../emacs-28.1/lisp/tooltip.eln > ELN ../../emacs-28.1/lisp/uniquify.eln > Error: (file-missing "Searching for program" "No such file or directory" "git") > Error: (file-missing "Searching for program" "No such file or directory" "git") > > ... > > > Loading leim/leim-list.el (source)... > Waiting for git... > Error running git rev-parse: (file-missing "Searching for program" "No such file or directory" "git") > Waiting for git... > Error running git rev-parse --abbrev-ref: (file-missing "Searching for program" "No such file or directory" "git") > Finding pointers to doc strings... > > The build goes along, but I wonder why those messages are shown and if > they have an effect on the build products. The last two messages (about git rev-parse) are harmless (they are inside ignore-errors), but those emitted by ELN are not expected, I think. A Lisp backtrace for those errors should be useful. Actually, a full-fledged bug report with all the details, including how you configured the build, would be appreciated.