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: Pretest Date: Sat, 28 Oct 2006 21:05:08 +0200 Message-ID: References: <87lkn1tzav.fsf@stupidchicken.com> <87mz7gmo7a.fsf@stupidchicken.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1162062388 20923 80.91.229.2 (28 Oct 2006 19:06:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 28 Oct 2006 19:06:28 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 28 21:06:28 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GdtVU-0004Zk-9W for ged-emacs-devel@m.gmane.org; Sat, 28 Oct 2006 21:06:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GdtVT-0006dd-S9 for ged-emacs-devel@m.gmane.org; Sat, 28 Oct 2006 15:06:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GdtUU-0005xw-Ow for emacs-devel@gnu.org; Sat, 28 Oct 2006 15:05:10 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GdtUT-0005wK-6L for emacs-devel@gnu.org; Sat, 28 Oct 2006 15:05:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GdtUS-0005w1-NM for emacs-devel@gnu.org; Sat, 28 Oct 2006 15:05:08 -0400 Original-Received: from [192.114.186.20] (helo=nitzan.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GdtUS-0005r5-2W for emacs-devel@gnu.org; Sat, 28 Oct 2006 15:05:08 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-254-52.inter.net.il [80.230.254.52]) by nitzan.inter.net.il (MOS 3.7.3a-GA) with ESMTP id FAN44772 (AUTH halo1); Sat, 28 Oct 2006 21:05:02 +0200 (IST) Original-To: Chong Yidong In-reply-to: <87mz7gmo7a.fsf@stupidchicken.com> (message from Chong Yidong on Sat, 28 Oct 2006 11:53:29 -0400) 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:61301 Archived-At: > Cc: emacs-devel@gnu.org > From: Chong Yidong > Date: Sat, 28 Oct 2006 11:53:29 -0400 > > Good catch. This seems to be due to a difference in the man and > lispref/lispintro Makefiles. The way man does it is > > INFO_TARGETS = ../info/emacs ../info/ccmode ....[etc] > > info: $(top_srcdir)/info $(INFO_TARGETS) > > ../info/emacs: ${EMACSSOURCES} > cd $(srcdir); $(MAKEINFO) emacs.texi > > whereas lispref does it like this: > > srcs = $(srcdir)/abbrevs.texi ....[etc] > > info: $(infodir)/elisp > > $(infodir)/elisp: $(srcs) > $(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp > > By analogy, this last line should be replaced by > > cd $(srcdir); $(MAKEINFO) elisp.texi I have no objections to such a change, but note that $(MAKEINFO) doesn't include the -I switches in lispref/Makefile.in, so if we want to make such a change, we should probably add them to the macro.