From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lute Kamstra Newsgroups: gmane.emacs.devel Subject: Re: fonttextsize in lispref/elisp.texi Date: Sun, 20 Aug 2006 09:53:56 +0200 Message-ID: <87veonn8q3.fsf@xs4all.nl> References: <87d5b4ga8h.fsf@xs4all.nl> <874pwfbu2s.fsf@xs4all.nl> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1156060465 21566 80.91.229.2 (20 Aug 2006 07:54:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 20 Aug 2006 07:54:25 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Aug 20 09:54:21 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 1GEi8Q-0007Ap-E1 for ged-emacs-devel@m.gmane.org; Sun, 20 Aug 2006 09:54:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GEi8Q-0000yP-0M for ged-emacs-devel@m.gmane.org; Sun, 20 Aug 2006 03:54:18 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GEi8D-0000y3-Ce for emacs-devel@gnu.org; Sun, 20 Aug 2006 03:54:05 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GEi8B-0000xk-TX for emacs-devel@gnu.org; Sun, 20 Aug 2006 03:54:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GEi8B-0000xh-OB for emacs-devel@gnu.org; Sun, 20 Aug 2006 03:54:03 -0400 Original-Received: from [194.109.24.35] (helo=smtp-vbr15.xs4all.nl) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GEiFF-0008Sc-TO; Sun, 20 Aug 2006 04:01:22 -0400 Original-Received: from pijl (a80-127-67-124.adsl.xs4all.nl [80.127.67.124]) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7K7rvHI096903; Sun, 20 Aug 2006 09:53:57 +0200 (CEST) (envelope-from Lute.Kamstra@xs4all.nl) Original-Received: from lute by pijl with local (Exim 3.36 #1 (Debian)) id 1GEi84-0001Nj-00; Sun, 20 Aug 2006 09:53:56 +0200 Original-To: Eli Zaretskii In-Reply-To: (Eli Zaretskii's message of "Tue, 15 Aug 2006 00:02:32 +0300") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Original-Lines: 49 X-Virus-Scanned: by XS4ALL Virus Scanner 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:58539 Archived-At: Eli Zaretskii writes: > 2) I think `mandir' is the wrong name for this, since that name is > used for the directory where man pages are installed > >> ! $(TEXI2DVI) -I $(srcdir):$(mandir) $(srcdir)/elisp.texi > > 3) please use 2 separate -I switches in a row, since the `:' > separator is not portable to non-Posix systems Thanks, I'll commit this patch then. Lute. Index: lispref/Makefile.in =================================================================== RCS file: /cvsroot/emacs/emacs/lispref/Makefile.in,v retrieving revision 1.37 diff -c -r1.37 Makefile.in *** lispref/Makefile.in 6 Feb 2006 11:55:09 -0000 1.37 --- lispref/Makefile.in 20 Aug 2006 07:43:29 -0000 *************** *** 27,32 **** --- 27,33 ---- VPATH=@srcdir@ infodir = $(srcdir)/../info + usermanualdir = $(srcdir)/../man TEXI2DVI = texi2dvi SHELL = /bin/sh *************** *** 103,109 **** $(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp elisp.dvi: $(srcs) ! $(TEXI2DVI) -I $(srcdir) $(srcdir)/elisp.texi # This is for use in a separate distro of the Emacs Lisp manual. install: elisp --- 104,110 ---- $(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp elisp.dvi: $(srcs) ! $(TEXI2DVI) -I $(srcdir) -I $(usermanualdir) $(srcdir)/elisp.texi # This is for use in a separate distro of the Emacs Lisp manual. install: elisp