]> code.delx.au - gnu-emacs/commitdiff
* Makefile.in: Use relative paths to avoid advertising filesystem
authorChong Yidong <cyd@stupidchicken.com>
Sun, 29 Oct 2006 21:36:17 +0000 (21:36 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 29 Oct 2006 21:36:17 +0000 (21:36 +0000)
contents during compilation.

* makefile.w32-in: Likewise.

lispref/ChangeLog
lispref/Makefile.in
lispref/makefile.w32-in

index 4400de92a0dc9d863c825f6536df6ab876265053..03359e1cd293bd748fdc37658824750f1110c29d 100644 (file)
@@ -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.
index 1eea23e122ee0b0fcb81ce0767f36a39dbccc24c..e32a99e6e9881dedb90103e406de09eb196657cf 100644 (file)
@@ -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
index 7da88058bd583ad91d9068afb4d2c9298fa0d04a..93bb5ae6d452b56148d28f9ca5af8f7a49a75c74 100644 (file)
@@ -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