mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 03:17:36 +00:00
* Makefile.in: Use relative paths to avoid advertising filesystem
contents during compilation.
This commit is contained in:
parent
080234b693
commit
cbdeee32c1
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-10-29 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Makefile.in: Use relative paths to avoid advertising filesystem
|
||||
contents during compilation.
|
||||
|
||||
2006-08-21 Robert J. Chassell <bob@rattlesnake.com>
|
||||
|
||||
* emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ SHELL = @SHELL@
|
|||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
infodir = ${srcdir}/../info
|
||||
infodir = ../info
|
||||
|
||||
INFO_SOURCES = ${srcdir}/emacs-lisp-intro.texi
|
||||
# The file name eintr must fit within 5 characters, to allow for
|
||||
|
|
@ -45,7 +45,7 @@ info: $(INFO_TARGETS)
|
|||
dvi: $(DVI_TARGETS)
|
||||
|
||||
${infodir}/eintr: ${INFO_SOURCES}
|
||||
$(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi
|
||||
cd $(srcdir); $(MAKEINFO) emacs-lisp-intro.texi -o $(infodir)/eintr
|
||||
|
||||
emacs-lisp-intro.dvi: ${INFO_SOURCES}
|
||||
$(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
|
||||
|
|
|
|||
Loading…
Reference in a new issue