From ece3ba10add0b8cc93f779c4f9d03290283840d1 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 29 Oct 2006 21:36:17 +0000 Subject: * Makefile.in: Use relative paths to avoid advertising filesystem contents during compilation. * makefile.w32-in: Likewise. --- lispref/ChangeLog | 7 +++++++ lispref/Makefile.in | 4 ++-- lispref/makefile.w32-in | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) (limited to 'lispref') diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 4400de92a0d..03359e1cd29 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -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 --git a/lispref/Makefile.in b/lispref/Makefile.in index 1eea23e122e..e32a99e6e98 100644 --- a/lispref/Makefile.in +++ b/lispref/Makefile.in @@ -26,7 +26,7 @@ srcdir = @srcdir@ # 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 @@ srcs = \ 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 --git a/lispref/makefile.w32-in b/lispref/makefile.w32-in index 7da88058bd5..93bb5ae6d45 100644 --- a/lispref/makefile.w32-in +++ b/lispref/makefile.w32-in @@ -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 @@ $(infodir)/dir: $(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 -- cgit v1.2.1