]> 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:31:19 +0000 (21:31 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 29 Oct 2006 21:31:19 +0000 (21:31 +0000)
contents during compilation.

lispintro/ChangeLog
lispintro/Makefile.in

index 986175687209ce4a451c5b68552f027ebdb6533b..a210e21d98e499123eab41c7b0f80b12081021a6 100644 (file)
@@ -1,3 +1,8 @@
+2006-10-29  Chong Yidong  <cyd@stupidchicken.com>
+
+       * Makefile.in: Use relative paths to avoid advertising filesystem
+       contents during compilation.
+
 2006-08-21  Robert J. Chassell  <bob@rattlesnake.com>
 
        * emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex
index 8d902f41a64687e2d9193d52c23536d9564da1fa..eacd1546918a4f3be22e15774f911b7568b7a87f 100644 (file)
@@ -25,7 +25,7 @@ SHELL = @SHELL@
 srcdir = @srcdir@
 VPATH = @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
@@ -45,7 +45,7 @@ info: $(INFO_TARGETS)
 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