diff options
author | Eli Zaretskii <eliz@gnu.org> | 2005-07-30 11:42:35 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2005-07-30 11:42:35 +0000 |
commit | 55c097c01c94c5de1f1f3706818dc4572d8fdc83 (patch) | |
tree | 2c417d0e7e7ac685732d151d43e97df112c5f62d /man | |
parent | 79019d4cb471adc8883f5dcc71c4bf715b5bf4a0 (diff) | |
download | emacs-55c097c01c94c5de1f1f3706818dc4572d8fdc83.tar.gz |
(info): Don't run multi-install-info.bat.
($(infodir)/dir): New target, produced by running multi-install-info.bat.
Diffstat (limited to 'man')
-rw-r--r-- | man/makefile.w32-in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/man/makefile.w32-in b/man/makefile.w32-in index ec14ae3abe3..1792933e705 100644 --- a/man/makefile.w32-in +++ b/man/makefile.w32-in @@ -109,7 +109,6 @@ EMACSSOURCES= \ $(srcdir)/kmacro.texi info: $(INFO_TARGETS) - $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) dvi: $(DVI_TARGETS) @@ -124,6 +123,9 @@ dvi: $(DVI_TARGETS) # Some Windows ports of makeinfo seem to require -o to come before the # texi filename, contrary to GNU standards. +$(infodir)/dir: + $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) + $(infodir)/info: $(INFOSOURCES) $(MAKEINFO) --no-split -o $@ info.texi |