719*_*016 1 linux autotools autoreconf
.deb在debian wheezy Linux上运行这些命令需要什么包?
cd software_that_builds_with_autotools
autoreconf --install &&\
./configure --prefix=/opt/foo/bar &&\
make && make install
Run Code Online (Sandbox Code Playgroud)
我尝试安装以下内容,但它仍然说它缺乏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
Run Code Online (Sandbox Code Playgroud)
只是用
sudo apt-get install binutils make csh g++ sed gawk autoconf automake autotools-dev
Run Code Online (Sandbox Code Playgroud)