mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix texinfo: `make install-info
` fails on macOS
This commit is contained in:
parent
57a7f76c77
commit
3987734c18
1
CHANGES
1
CHANGES
@ -21,6 +21,7 @@ Bugs fixed
|
|||||||
* #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
|
* texinfo: ``make install-info`` causes syntax error
|
||||||
|
* texinfo: ``make install-info`` fails on macOS
|
||||||
|
|
||||||
Testing
|
Testing
|
||||||
--------
|
--------
|
||||||
|
@ -18,7 +18,8 @@ pdf: $(addsuffix .pdf,$(ALLDOCS))
|
|||||||
|
|
||||||
install-info: info
|
install-info: info
|
||||||
for f in *.info; do \
|
for f in *.info; do \
|
||||||
cp -t $(infodir) "$$f" && \
|
mkdir -p $(infodir) && \
|
||||||
|
cp "$$f" $(infodir) && \
|
||||||
$(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \
|
$(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user