diff options
| author | Chong Yidong | 2006-10-29 21:31:19 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-10-29 21:31:19 +0000 |
| commit | cbdeee32c1a2a4091d6cc4230626c71fc473bfca (patch) | |
| tree | fad6a66c5fd75e2bdda1a75e61bb9f04965c05d1 | |
| parent | 080234b6930bbc83ffd60629a7da411881e156cc (diff) | |
| download | emacs-cbdeee32c1a2a4091d6cc4230626c71fc473bfca.tar.gz emacs-cbdeee32c1a2a4091d6cc4230626c71fc473bfca.zip | |
* Makefile.in: Use relative paths to avoid advertising filesystem
contents during compilation.
| -rw-r--r-- | lispintro/ChangeLog | 5 | ||||
| -rw-r--r-- | lispintro/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog index 98617568720..a210e21d98e 100644 --- a/lispintro/ChangeLog +++ b/lispintro/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-10-29 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * Makefile.in: Use relative paths to avoid advertising filesystem | ||
| 4 | contents during compilation. | ||
| 5 | |||
| 1 | 2006-08-21 Robert J. Chassell <bob@rattlesnake.com> | 6 | 2006-08-21 Robert J. Chassell <bob@rattlesnake.com> |
| 2 | 7 | ||
| 3 | * emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex | 8 | * emacs-lisp-intro.texi: deleted in directory copy of texinfo.tex |
diff --git a/lispintro/Makefile.in b/lispintro/Makefile.in index 8d902f41a64..eacd1546918 100644 --- a/lispintro/Makefile.in +++ b/lispintro/Makefile.in | |||
| @@ -25,7 +25,7 @@ SHELL = @SHELL@ | |||
| 25 | srcdir = @srcdir@ | 25 | srcdir = @srcdir@ |
| 26 | VPATH = @srcdir@ | 26 | VPATH = @srcdir@ |
| 27 | 27 | ||
| 28 | infodir = ${srcdir}/../info | 28 | infodir = ../info |
| 29 | 29 | ||
| 30 | INFO_SOURCES = ${srcdir}/emacs-lisp-intro.texi | 30 | INFO_SOURCES = ${srcdir}/emacs-lisp-intro.texi |
| 31 | # The file name eintr must fit within 5 characters, to allow for | 31 | # The file name eintr must fit within 5 characters, to allow for |
| @@ -45,7 +45,7 @@ info: $(INFO_TARGETS) | |||
| 45 | dvi: $(DVI_TARGETS) | 45 | dvi: $(DVI_TARGETS) |
| 46 | 46 | ||
| 47 | ${infodir}/eintr: ${INFO_SOURCES} | 47 | ${infodir}/eintr: ${INFO_SOURCES} |
| 48 | $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi | 48 | cd $(srcdir); $(MAKEINFO) emacs-lisp-intro.texi -o $(infodir)/eintr |
| 49 | 49 | ||
| 50 | emacs-lisp-intro.dvi: ${INFO_SOURCES} | 50 | emacs-lisp-intro.dvi: ${INFO_SOURCES} |
| 51 | $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi | 51 | $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi |