Mercurial > emacs
changeset 73536:baed64986af0
* Makefile.in: Use relative paths to avoid advertising filesystem
contents during compilation.
* makefile.w32-in: Likewise.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 29 Oct 2006 21:36:17 +0000 |
parents | 709835db3e58 |
children | d2f1d227576d |
files | lispref/ChangeLog lispref/Makefile.in lispref/makefile.w32-in |
diffstat | 3 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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 <cyd@stupidchicken.com> + + * Makefile.in: Use relative paths to avoid advertising filesystem + contents during compilation. + + * makefile.w32-in: Likewise. + 2006-10-23 Kim F. Storm <storm@cua.dk> * commands.texi (Event Input Misc): Update unread-command-events.
--- 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
--- 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