[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: fonttextsize in lispref/elisp.texi
From: |
Lute Kamstra |
Subject: |
Re: fonttextsize in lispref/elisp.texi |
Date: |
Sun, 20 Aug 2006 09:53:56 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) |
Eli Zaretskii <address@hidden> 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 ----
address@hidden@
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