CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/liyanghao/sdk111/software/vhd_3519_usb3_vx71uv/mp4v2-2.0.0/autoaux/missing --run aclocal-1.11 /home/liyanghao/sdk111/software/vhd_3519_usb3_vx71uv/mp4v2-2.0.0/autoaux/missing: 行 52: aclocal-1.11: 未找到命令 WARNING: `aclocal-1.11' is missing on your system. You should only need it if you modified `acinclude.m4' or `configure.ac'. You might want to install the `Automake' and `Perl' packages. Grab them from any GNU archive site. cd . && /bin/sh /home/liyanghao/sdk111/software/vhd_3519_usb3_vx71uv/mp4v2-2.0.0/autoaux/missing --run automake-1.11 --foreign aclocal.m4:16: warning: this file was generated for autoconf 2.65. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'. /usr/bin/m4:configure.ac:23: empty string treated as 0 autom4te: /usr/bin/m4 failed with exit status: 1 automake-1.11: error: autoconf failed with exit status: 1 GNUmakefile:600: recipe for target 'GNUmakefile.in' failed make: *** [GNUmakefile.in] Error 1
时间: 2024-02-04 21:04:05 浏览: 198
mac 安装omyzsh后不执行~/.bash_profile、~/.bashrc的完美解决办法
这个错误提示是缺少`aclocal-1.11`命令,可能是因为缺少`Automake`包或者版本不匹配导致的。你可以尝试安装`Automake`并升级到2.65版本(或者重新生成build system),具体操作可以按照以下步骤进行:
1. 安装`Automake`和`Perl`包:
```
sudo apt-get install automake perl
```
2. 升级`Automake`到2.65版本:
```
sudo apt-get install automake=1:1.11.3-2ubuntu1
```
注意:这里是安装1.11.3版本,如果你需要其他版本,可以在安装命令中指定。
3. 重新生成build system:
```
autoreconf -fiv
```
4. 接着执行configure、make、make install即可。
阅读全文