diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2006-10-29 21:36:17 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2006-10-29 21:36:17 +0000 |
commit | b4e4dc3c1f6e3f123edc4b047f9fe5525c3ffff5 (patch) | |
tree | 8349ac362106d17b969cfe90014459c8576ae906 /lispref/makefile.w32-in | |
parent | a1b40c181bc6e33cd5812008eb707627eb31869b (diff) | |
download | emacs-b4e4dc3c1f6e3f123edc4b047f9fe5525c3ffff5.tar.gz |
* Makefile.in: Use relative paths to avoid advertising filesystem
contents during compilation.
* makefile.w32-in: Likewise.
Diffstat (limited to 'lispref/makefile.w32-in')
-rw-r--r-- | lispref/makefile.w32-in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |