mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix texinfo: `make install-info
` causes syntax error
This commit is contained in:
parent
70ece3977a
commit
57a7f76c77
1
CHANGES
1
CHANGES
@ -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
|
||||||
--------
|
--------
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user