From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: Broken lisp/Makefile.w32-in Date: Wed, 31 Jul 2002 10:04:17 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <20020731095853.2EED.LEKTU@terra.es> References: <20020730.235911.01367475.Takaaki.Ota@am.sony.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1028102691 31587 127.0.0.1 (31 Jul 2002 08:04:51 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 31 Jul 2002 08:04:51 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17ZoTS-0008DM-00 for ; Wed, 31 Jul 2002 10:04:50 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17ZolY-0007PH-00 for ; Wed, 31 Jul 2002 10:23:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17ZoTr-0003bS-00; Wed, 31 Jul 2002 04:05:15 -0400 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17ZoT1-0003ai-00 for ; Wed, 31 Jul 2002 04:04:23 -0400 Original-Received: from [62.22.27.143] (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id g6V84Hx10075; Wed, 31 Jul 2002 10:04:17 +0200 Original-To: Tak Ota In-Reply-To: <20020730.235911.01367475.Takaaki.Ota@am.sony.com> X-Mailer: Becky! ver. 2.05.04 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:6198 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:6198 On Tue, 30 Jul 2002 23:59:11 -0700 (PDT), Tak Ota wrote: > It should be corrected to something > like this. > > update-subdirs-CMD: doit > echo ;; In load-path, after this directory should come> subdirs.el > echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el > echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el > @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el > echo ))>> subdirs.el Yes, that would work. Good! Questions (to Andrew or anyone else that knows the answers :) 1.- Is there any reason for calc/ and obsolete/ not being in WINS? 2.- Why it is calc/ treated differently? (There's now a compile-calc target.) 3.- Is there any relevancy in the order of directories passed to `normal-top-level-add-to-load-path'? The flawed code in Makefile.w32-in and the new above both generate the list in reverse order that the current (CVS) contents of subdirs.el. /L/e/k/t/u