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] /srv/bzr/emacs/trunk r101703: Support TAGS targets in the w32 build. Date: Sat, 02 Oct 2010 09:47:02 +0200 Message-ID: <83aamxqbnt.fsf@gnu.org> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Trace: dough.gmane.org 1286005632 22368 80.91.229.12 (2 Oct 2010 07:47:12 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 2 Oct 2010 07:47:12 +0000 (UTC) Cc: emacs-devel@gnu.org To: Juanma Barranquero Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 02 09:47:10 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P1woI-0002cL-AA for ged-emacs-devel@m.gmane.org; Sat, 02 Oct 2010 09:47:10 +0200 Original-Received: from localhost ([127.0.0.1]:48699 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1woH-0007bw-8P for ged-emacs-devel@m.gmane.org; Sat, 02 Oct 2010 03:47:09 -0400 Original-Received: from [140.186.70.92] (port=34585 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1wo8-0007aZ-JU for emacs-devel@gnu.org; Sat, 02 Oct 2010 03:47:01 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P1wo7-00017Q-Gg for emacs-devel@gnu.org; Sat, 02 Oct 2010 03:47:00 -0400 Original-Received: from mtaout23.012.net.il ([80.179.55.175]:60428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P1wo7-00017K-7e for emacs-devel@gnu.org; Sat, 02 Oct 2010 03:46:59 -0400 Original-Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0L9N00400K4MH300@a-mtaout23.012.net.il> for emacs-devel@gnu.org; Sat, 02 Oct 2010 09:46:57 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([84.229.77.74]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0L9N004C2KA8D830@a-mtaout23.012.net.il>; Sat, 02 Oct 2010 09:46:57 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:131220 Archived-At: > From: Juanma Barranquero > Date: Sat, 2 Oct 2010 03:13:29 +0200 > Cc: Emacs developers >=20 > On Fri, Oct 1, 2010 at 13:45, Eli Zaretskii wrote: > > ------------------------------------------------------------ > > revno: 101703 > > committer: Eli Zaretskii > > branch nick: trunk > > timestamp: Fri 2010-10-01 13:45:16 +0200 > > message: > > =C2=A0Support TAGS targets in the w32 build. >=20 > C:\emacs> cd nt > C:\emacs\nt> make tags >=20 > ../lib-src/oo-spd/i386/etags C:/emacs/nt/*.c > make -C ../src TAGS TAGS-LISP > make[1]: Entering directory `C:/emacs/src' > make[1]: Circular TAGS <- TAGS dependency dropped. > make -w nt-TAGS-gmake > make[2]: Entering directory `C:/emacs/src' > make -w -C ../nt TAGS > make[3]: Entering directory `C:/emacs/nt' > ../lib-src/oo-spd/i386/etags C:/emacs/nt/*.c > make -w -C ../src TAGS TAGS-LISP > make[4]: Entering directory `C:/emacs/src' > make[4]: Circular TAGS <- TAGS dependency dropped. > make -w nt-TAGS-gmake > make[5]: Entering directory `C:/emacs/src' > make -w -C ../nt TAGS > make[6]: Entering directory `C:/emacs/nt' > ../lib-src/oo-spd/i386/etags C:/emacs/nt/*.c > make -w -C ../src TAGS TAGS-LISP That's strange. What version of Make do you use? Was it compiled to be case-insensitive or something? Otherwise, how do you explain this= : > make[1]: Entering directory `C:/emacs/src' > make[1]: Circular TAGS <- TAGS dependency dropped. Anyway, I cannot reproduce this with Make 3.82 built out of the box =66rom the official GNU distro. Did you invoke Make when any of the TAGS files involved already existed? If so, which ones? I tried wit= h all the files missing and with all the files existing, but not with other permutations, so maybe there's something I don't see. Does the problem go away if you remove these two lines: tags: TAGS TAGS-LISP ../nt/TAGS .PHONY: tags =66rom src/makefile.w32-in, or replace `tags' (lower-case) with `full-tags' or some such?