我已经安装了makeinfo 4.8。输入$ makeinfo --version命令行返回makeinfo (GNU texinfo) 4.8。
我想把版本更新到最新的4.13版本。我找到了相关信息这里和这里。我对命令行/bash/git是新手.请帮帮我,非常感谢!
发布于 2017-06-06 06:16:34
考虑到这个问题,您不应该需要蜻蜓(或git命令):
configure: error: You do not seem to have makeinfo >= 4.13, and your
source tree does not seem to have pre-built manuals in the 'info' directory.
Either install a suitable version of makeinfo, or re-run configure
with the '--without-makeinfo' option to build without the manuals. 我试过
brew install texinfo,然后是brew ln texinfo --force,现在makeinfo --version展示了texi2any (GNU texinfo) 6.3
如果您使用
brew安装,请确保您的路径中有/usr/local/opt/texinfo/bin,并且它在/usr/bin之前。 此工具在Mac上的4.8版本(10.12.6)位于/usr/bin/makeinfo中。 如果这个路径在后者前面,那么它将找不到brew安装的最新版本。
https://stackoverflow.com/questions/44379909
复制相似问题