aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2006-10-29 21:33:23 +0000
committerChong Yidong2006-10-29 21:33:23 +0000
commita1b40c181bc6e33cd5812008eb707627eb31869b (patch)
tree827ea817e44d2ae710f018014951934a5088de6e
parentcbdeee32c1a2a4091d6cc4230626c71fc473bfca (diff)
downloademacs-a1b40c181bc6e33cd5812008eb707627eb31869b.tar.gz
emacs-a1b40c181bc6e33cd5812008eb707627eb31869b.zip
* makefile.w32-in: Use relative paths to avoid advertising filesystem
contents during compilation.
-rw-r--r--lispintro/ChangeLog2
-rw-r--r--lispintro/makefile.w32-in4
2 files changed, 4 insertions, 2 deletions
diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog
index a210e21d98e..48e46e43429 100644
--- a/lispintro/ChangeLog
+++ b/lispintro/ChangeLog
@@ -3,6 +3,8 @@
3 * Makefile.in: Use relative paths to avoid advertising filesystem 3 * Makefile.in: Use relative paths to avoid advertising filesystem
4 contents during compilation. 4 contents during compilation.
5 5
6 * makefile.w32-in: Likewise.
7
62006-08-21 Robert J. Chassell <bob@rattlesnake.com> 82006-08-21 Robert J. Chassell <bob@rattlesnake.com>
7 9
8 * emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex 10 * emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex
diff --git a/lispintro/makefile.w32-in b/lispintro/makefile.w32-in
index c0b4b2a7b69..c0ab93432e3 100644
--- a/lispintro/makefile.w32-in
+++ b/lispintro/makefile.w32-in
@@ -21,7 +21,7 @@
21 21
22srcdir = . 22srcdir = .
23 23
24infodir = $(srcdir)/../info 24infodir = ../info
25 25
26INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi 26INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi
27# The file name eintr must fit within 5 characters, to allow for 27# The file name eintr must fit within 5 characters, to allow for
@@ -46,7 +46,7 @@ $(infodir)/dir:
46dvi: $(DVI_TARGETS) 46dvi: $(DVI_TARGETS)
47 47
48$(infodir)/eintr: $(INFO_SOURCES) 48$(infodir)/eintr: $(INFO_SOURCES)
49 $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi 49 cd $(srcdir); $(MAKEINFO) emacs-lisp-intro.texi -o $(infodir)/eintr
50 50
51emacs-lisp-intro.dvi: $(INFO_SOURCES) 51emacs-lisp-intro.dvi: $(INFO_SOURCES)
52 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi 52 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi