【发布时间】:2015-03-04 17:20:37
【问题描述】:
在 debian wheezy Linux 上运行这些命令需要哪些 .deb 软件包?
cd software_that_builds_with_autotools
autoreconf --install &&\
./configure --prefix=/opt/foo/bar &&\
make && make install
我尝试安装以下内容,但它仍然说缺少aclocal:
apt-get install binutils make csh g++ sed gawk autoconf autotools-dev
Can't exec "aclocal": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 326.
autoreconf: failed to run aclocal: No such file or directory
【问题讨论】:
-
aclocal在automake包中找到 -
谢谢,成功了。如果你想自己把它变成一个答案,我会接受它:
sudo apt-get install binutils make csh g++ sed gawk autoconf automake autotools-dev
标签: linux autotools autoreconf