From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master da4ce83: * nt/INSTALL: Update instructions for running autogen.sh Date: Fri, 02 Oct 2015 16:48:48 +0300 Message-ID: <83vbap5qkf.fsf@gnu.org> References: <20151002085648.25296.22993@vcs.savannah.gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1443798940 23670 80.91.229.3 (2 Oct 2015 15:15:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 2 Oct 2015 15:15:40 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 02 17:15:24 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Zi23P-00067u-BO for ged-emacs-devel@m.gmane.org; Fri, 02 Oct 2015 17:15:23 +0200 Original-Received: from localhost ([::1]:60596 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi23O-0004Th-OU for ged-emacs-devel@m.gmane.org; Fri, 02 Oct 2015 11:15:22 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54924) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi0hn-0000W9-Vw for emacs-devel@gnu.org; Fri, 02 Oct 2015 09:49:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zi0hk-0001xU-K3 for emacs-devel@gnu.org; Fri, 02 Oct 2015 09:48:59 -0400 Original-Received: from mtaout22.012.net.il ([80.179.55.172]:33638) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi0hk-0001xE-D7 for emacs-devel@gnu.org; Fri, 02 Oct 2015 09:48:56 -0400 Original-Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0NVL00J00I4POL00@a-mtaout22.012.net.il> for emacs-devel@gnu.org; Fri, 02 Oct 2015 16:48:55 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([84.94.185.246]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NVL00JU4IDJFQ90@a-mtaout22.012.net.il>; Fri, 02 Oct 2015 16:48:55 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.172 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:190694 Archived-At: > From: Stefan Monnier > Cc: Eli Zaretskii > Date: Fri, 02 Oct 2015 09:03:31 -0400 > > > + If the script fails because it cannot find Git, you will need to > > + arrange for the MSYS Bash's PATH to include the Git's 'bin' > > + sibdirectory, where there's the git.exe executable. > > I'm not 100% sure I understand what this is talking about, but I get the > impression that this is saying that autogen.sh can fail if `git' > is missing. If so, it sounds like a bug in autogen.sh. if test -d .git; then # Configure 'git diff' hunk header format. git config 'diff.elisp.xfuncname' \ '^\(def[^[:space:]]+[[:space:]]+([^()[:space:]]+)' || exit git config 'diff.texinfo.xfuncname' \ ^^^^^^^ '^@node[[:space:]]+([^,[:space:]][^,]+)' || exit ^^^^^^^ It exits with an error message, which in my book means it "fails".