diff options
| author | Chong Yidong | 2006-10-29 21:36:17 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-10-29 21:36:17 +0000 |
| commit | b4e4dc3c1f6e3f123edc4b047f9fe5525c3ffff5 (patch) | |
| tree | 8349ac362106d17b969cfe90014459c8576ae906 | |
| parent | a1b40c181bc6e33cd5812008eb707627eb31869b (diff) | |
| download | emacs-b4e4dc3c1f6e3f123edc4b047f9fe5525c3ffff5.tar.gz emacs-b4e4dc3c1f6e3f123edc4b047f9fe5525c3ffff5.zip | |
* Makefile.in: Use relative paths to avoid advertising filesystem
contents during compilation.
* makefile.w32-in: Likewise.
| -rw-r--r-- | lispref/ChangeLog | 7 | ||||
| -rw-r--r-- | lispref/Makefile.in | 4 | ||||
| -rw-r--r-- | lispref/makefile.w32-in | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 4400de92a0d..03359e1cd29 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 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 | |||
| 6 | * makefile.w32-in: Likewise. | ||
| 7 | |||
| 1 | 2006-10-23 Kim F. Storm <storm@cua.dk> | 8 | 2006-10-23 Kim F. Storm <storm@cua.dk> |
| 2 | 9 | ||
| 3 | * commands.texi (Event Input Misc): Update unread-command-events. | 10 | * 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@ | |||
| 26 | # Tell make where to find source files; this is needed for the makefiles. | 26 | # Tell make where to find source files; this is needed for the makefiles. |
| 27 | VPATH=@srcdir@ | 27 | VPATH=@srcdir@ |
| 28 | 28 | ||
| 29 | infodir = $(srcdir)/../info | 29 | infodir = ../info |
| 30 | usermanualdir = $(srcdir)/../man | 30 | usermanualdir = $(srcdir)/../man |
| 31 | 31 | ||
| 32 | TEXI2DVI = texi2dvi | 32 | TEXI2DVI = texi2dvi |
| @@ -101,7 +101,7 @@ srcs = \ | |||
| 101 | info: $(infodir)/elisp | 101 | info: $(infodir)/elisp |
| 102 | 102 | ||
| 103 | $(infodir)/elisp: $(srcs) | 103 | $(infodir)/elisp: $(srcs) |
| 104 | $(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp | 104 | cd $(srcdir); $(MAKEINFO) -I. -I$(infodir) elisp.texi -o $(infodir)/elisp |
| 105 | 105 | ||
| 106 | elisp.dvi: $(srcs) | 106 | elisp.dvi: $(srcs) |
| 107 | $(TEXI2DVI) -I $(srcdir) -I $(usermanualdir) $(srcdir)/elisp.texi | 107 | $(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 @@ | |||
| 22 | # Standard configure variables. | 22 | # Standard configure variables. |
| 23 | srcdir = . | 23 | srcdir = . |
| 24 | 24 | ||
| 25 | infodir = $(srcdir)/../info | 25 | infodir = ../info |
| 26 | usermanualdir = $(srcdir)/../man | 26 | usermanualdir = $(srcdir)/../man |
| 27 | 27 | ||
| 28 | # Redefine `TEX' if `tex' does not invoke plain TeX. For example: | 28 | # Redefine `TEX' if `tex' does not invoke plain TeX. For example: |
| @@ -106,7 +106,7 @@ $(infodir)/dir: | |||
| 106 | $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp | 106 | $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp |
| 107 | 107 | ||
| 108 | $(infodir)/elisp: $(srcs) | 108 | $(infodir)/elisp: $(srcs) |
| 109 | $(MAKEINFO) -I. -I$(srcdir) -o $(infodir)/elisp $(srcdir)/elisp.texi | 109 | cd $(srcdir); $(MAKEINFO) -I. -I$(infodir) elisp.texi -o $(infodir)/elisp |
| 110 | 110 | ||
| 111 | elisp.dvi: $(srcs) | 111 | elisp.dvi: $(srcs) |
| 112 | $(texinputdir) $(TEX) -I $(usermanualdir) $(srcdir)/elisp.texi | 112 | $(texinputdir) $(TEX) -I $(usermanualdir) $(srcdir)/elisp.texi |