From: Chong Yidong Date: Sun, 29 Oct 2006 21:33:23 +0000 (+0000) Subject: * makefile.w32-in: Use relative paths to avoid advertising filesystem X-Git-Tag: emacs-pretest-22.0.91~474 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a1b40c181bc6e33cd5812008eb707627eb31869b;p=emacs.git * makefile.w32-in: Use relative paths to avoid advertising filesystem contents during compilation. --- diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog index a210e21d98e..48e46e43429 100644 --- a/lispintro/ChangeLog +++ b/lispintro/ChangeLog @@ -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 * 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 @@ 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 @@ $(infodir)/dir: 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