# HG changeset patch # User Chong Yidong # Date 1162157777 0 # Node ID baed64986af03238a46accd0465189274619ab6d # Parent 709835db3e58d4a9820f308c2e9e0191379dc4ba * Makefile.in: Use relative paths to avoid advertising filesystem contents during compilation. * makefile.w32-in: Likewise. diff -r 709835db3e58 -r baed64986af0 lispref/ChangeLog --- a/lispref/ChangeLog Sun Oct 29 21:33:23 2006 +0000 +++ b/lispref/ChangeLog Sun Oct 29 21:36:17 2006 +0000 @@ -1,3 +1,10 @@ +2006-10-29 Chong Yidong + + * Makefile.in: Use relative paths to avoid advertising filesystem + contents during compilation. + + * makefile.w32-in: Likewise. + 2006-10-23 Kim F. Storm * commands.texi (Event Input Misc): Update unread-command-events. diff -r 709835db3e58 -r baed64986af0 lispref/Makefile.in --- a/lispref/Makefile.in Sun Oct 29 21:33:23 2006 +0000 +++ b/lispref/Makefile.in Sun Oct 29 21:36:17 2006 +0000 @@ -26,7 +26,7 @@ # Tell make where to find source files; this is needed for the makefiles. VPATH=@srcdir@ -infodir = $(srcdir)/../info +infodir = ../info usermanualdir = $(srcdir)/../man TEXI2DVI = texi2dvi @@ -101,7 +101,7 @@ info: $(infodir)/elisp $(infodir)/elisp: $(srcs) - $(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp + cd $(srcdir); $(MAKEINFO) -I. -I$(infodir) elisp.texi -o $(infodir)/elisp elisp.dvi: $(srcs) $(TEXI2DVI) -I $(srcdir) -I $(usermanualdir) $(srcdir)/elisp.texi diff -r 709835db3e58 -r baed64986af0 lispref/makefile.w32-in --- a/lispref/makefile.w32-in Sun Oct 29 21:33:23 2006 +0000 +++ b/lispref/makefile.w32-in Sun Oct 29 21:36:17 2006 +0000 @@ -22,7 +22,7 @@ # Standard configure variables. srcdir = . -infodir = $(srcdir)/../info +infodir = ../info usermanualdir = $(srcdir)/../man # Redefine `TEX' if `tex' does not invoke plain TeX. For example: @@ -106,7 +106,7 @@ $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp $(infodir)/elisp: $(srcs) - $(MAKEINFO) -I. -I$(srcdir) -o $(infodir)/elisp $(srcdir)/elisp.texi + cd $(srcdir); $(MAKEINFO) -I. -I$(infodir) elisp.texi -o $(infodir)/elisp elisp.dvi: $(srcs) $(texinputdir) $(TEX) -I $(usermanualdir) $(srcdir)/elisp.texi