changeset 73535:709835db3e58

* makefile.w32-in: Use relative paths to avoid advertising filesystem contents during compilation.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 29 Oct 2006 21:33:23 +0000
parents 9712bd426177
children baed64986af0
files lispintro/ChangeLog lispintro/makefile.w32-in
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lispintro/ChangeLog	Sun Oct 29 21:31:19 2006 +0000
+++ b/lispintro/ChangeLog	Sun Oct 29 21:33:23 2006 +0000
@@ -3,6 +3,8 @@
 	* Makefile.in: Use relative paths to avoid advertising filesystem
 	contents during compilation.
 
+	* makefile.w32-in: Likewise.
+
 2006-08-21  Robert J. Chassell  <bob@rattlesnake.com>
 
 	* emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex
--- a/lispintro/makefile.w32-in	Sun Oct 29 21:31:19 2006 +0000
+++ b/lispintro/makefile.w32-in	Sun Oct 29 21:33:23 2006 +0000
@@ -21,7 +21,7 @@
 
 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
@@ -46,7 +46,7 @@
 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