Fix texinfo: `make install-info` causes syntax error

This commit is contained in:
Takeshi KOMIYA 2019-03-02 17:38:54 +09:00
parent 70ece3977a
commit 57a7f76c77
2 changed files with 7 additions and 6 deletions

View File

@ -20,6 +20,7 @@ Bugs fixed
* #3620: html: Defer searchindex.js rather than loading it via ajax * #3620: html: Defer searchindex.js rather than loading it via ajax
* #6113: html: Table cells and list items have large margins * #6113: html: Table cells and list items have large margins
* #5508: ``linenothreshold`` option for ``highlight`` directive was ignored * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored
* texinfo: ``make install-info`` causes syntax error
Testing Testing
-------- --------

View File

@ -17,15 +17,15 @@ html: $(addsuffix .html,$(ALLDOCS))
pdf: $(addsuffix .pdf,$(ALLDOCS)) pdf: $(addsuffix .pdf,$(ALLDOCS))
install-info: info install-info: info
for f in *.info; do \\ for f in *.info; do \
cp -t $(infodir) "$$f" && \\ cp -t $(infodir) "$$f" && \
$(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \\ $(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \
done done
uninstall-info: info uninstall-info: info
for f in *.info; do \\ for f in *.info; do \
rm -f "$(infodir)/$$f" ; \\ rm -f "$(infodir)/$$f" ; \
$(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \\ $(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \
done done
%.info: %.texi %.info: %.texi