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
|
||||
* #6113: html: Table cells and list items have large margins
|
||||
* #5508: ``linenothreshold`` option for ``highlight`` directive was ignored
|
||||
* texinfo: ``make install-info`` causes syntax error
|
||||
|
||||
Testing
|
||||
--------
|
||||
|
@ -17,15 +17,15 @@ html: $(addsuffix .html,$(ALLDOCS))
|
||||
pdf: $(addsuffix .pdf,$(ALLDOCS))
|
||||
|
||||
install-info: info
|
||||
for f in *.info; do \\
|
||||
cp -t $(infodir) "$$f" && \\
|
||||
$(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \\
|
||||
for f in *.info; do \
|
||||
cp -t $(infodir) "$$f" && \
|
||||
$(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \
|
||||
done
|
||||
|
||||
uninstall-info: info
|
||||
for f in *.info; do \\
|
||||
rm -f "$(infodir)/$$f" ; \\
|
||||
$(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \\
|
||||
for f in *.info; do \
|
||||
rm -f "$(infodir)/$$f" ; \
|
||||
$(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \
|
||||
done
|
||||
|
||||
%.info: %.texi
|
||||
|
Loading…
Reference in New Issue
Block a user