/bin/bash: aclocal-1.14: command not found
配置脚本生成了错误的Makefile,该文件试图运行aclocal-1.14(系统只有aclocal-1.15)。 通过运行autoreconf对其进行了修复。
在配置中对硬编码的autotools版本做了如下更改:
- am__api_version='1.14'
+ am__api_version='1.15'
参考 https://github.com/google/farmhash/issues/15