autoreconf收到错误:找不到所需的文件'./test-driver'

Kem*_*hou 2 autotools

运行autoreconf时出现此错误

parallel-tests: error: required file './test-driver' not found
parallel-tests:   'automake --add-missing' can install 'test-driver'
Run Code Online (Sandbox Code Playgroud)

如何解决这个错误?

Kem*_*hou 5

autoreconf有一个选项--install(短版-i),通过使用这个选项,将自动安装一些缺少的依赖项.这是一个很好的选择.此选项可以修复其他几个错误.

autoreconf -i
Run Code Online (Sandbox Code Playgroud)