From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: Emacs 23.1.90 pretest Date: Wed, 09 Dec 2009 16:45:35 -0500 Message-ID: <87y6lbizy8.fsf@stupidchicken.com> References: <87r5r47t7p.fsf@stupidchicken.com> <87vdgfvps8.fsf@stupidchicken.com> <87ocm7x3qb.fsf@stupidchicken.com> <9zws0vonx8.fsf@fencepost.gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1260395240 23126 80.91.229.12 (9 Dec 2009 21:47:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Dec 2009 21:47:20 +0000 (UTC) Cc: Juanma Barranquero , Eli Zaretskii , emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 09 22:47:12 2009 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.50) id 1NIUNK-0002Ot-N3 for ged-emacs-devel@m.gmane.org; Wed, 09 Dec 2009 22:47:11 +0100 Original-Received: from localhost ([127.0.0.1]:57185 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NIUNK-00064g-K4 for ged-emacs-devel@m.gmane.org; Wed, 09 Dec 2009 16:47:10 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NIUM0-000529-1j for emacs-devel@gnu.org; Wed, 09 Dec 2009 16:45:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NIULv-0004xQ-CR for emacs-devel@gnu.org; Wed, 09 Dec 2009 16:45:47 -0500 Original-Received: from [199.232.76.173] (port=36684 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NIULv-0004xD-4A for emacs-devel@gnu.org; Wed, 09 Dec 2009 16:45:43 -0500 Original-Received: from pantheon-po42.its.yale.edu ([130.132.50.101]:35924) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NIULq-0002Ps-Aa; Wed, 09 Dec 2009 16:45:38 -0500 Original-Received: from furry (dhcp128036014216.central.yale.edu [128.36.14.216]) (authenticated bits=0) by pantheon-po42.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id nB9LjaNJ032307 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 9 Dec 2009 16:45:36 -0500 Original-Received: by furry (Postfix, from userid 1000) id 0C2E6C071; Wed, 9 Dec 2009 16:45:36 -0500 (EST) In-Reply-To: <9zws0vonx8.fsf@fencepost.gnu.org> (Glenn Morris's message of "Wed, 09 Dec 2009 16:08:51 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux) X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.4-2.6 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:118489 Archived-At: Glenn Morris writes: > Chong Yidong wrote: > >> Then I am confused as to why "make cvs-update install" would fix the >> problem. > > I think WINS_CEDET_SUBDIRS is missing from the list of directories to > compile (WINS_ALMOST) in lisp/makefile.w32-in. > > cvs-update runs recompile which uses batch-byte-recompile-directory, > so compiling the files in a different way. You're right, of course. Juanma, could you test this change and see if it does the right thing? *** emacs/lisp/makefile.w32-in.~1.101.~ 2009-11-20 09:20:56.000000000 -0500 --- emacs/lisp/makefile.w32-in 2009-12-09 16:44:40.000000000 -0500 *************** *** 89,97 **** cedet \ cedet/ede \ cedet/semantic \ ! cedet/srecode ! ! WINS_CEDET_SUBDIRS=\ cedet/semantic/analyze \ cedet/semantic/bovine \ cedet/semantic/decorate \ --- 89,95 ---- cedet \ cedet/ede \ cedet/semantic \ ! cedet/srecode \ cedet/semantic/analyze \ cedet/semantic/bovine \ cedet/semantic/decorate \ *************** *** 118,137 **** textmodes \ url ! # Directories with lisp files to compile ! WINS_ALMOST=$(WINS_BASIC) \ $(WINS_CEDET) - # Directories to extract data from (customs, autoloads, etc.) - WINS_UPDATES=$(WINS_ALMOST) \ - $(WINS_CEDET_SUBDIRS) - # Directories to add to subdirs.el WINS_SUBDIR=$(WINS_BASIC) \ obsolete ! # All directories, except CEDET subdirs ! WINS= $(WINS_ALMOST) \ term \ obsolete --- 116,132 ---- textmodes \ url ! # Directories with lisp files to compile, and to extract data from ! # (customs, autoloads, etc.) ! WINS_UPDATES=$(WINS_BASIC) \ $(WINS_CEDET) # Directories to add to subdirs.el WINS_SUBDIR=$(WINS_BASIC) \ obsolete ! # All directories ! WINS= $(WINS_UPDATES) \ term \ obsolete