如何从 automake1.14 降级到 1.12 版本?

如何从 automake1.14 降级到 1.12 版本?

现在我正在使用 Ubuntu14.04,还是个 Linux 新手。我遇到了一个问题,我的 DroneSDK3 只能使用 automake1.12 构建,我想将我的 automake 1.14 降级到合适的版本!有什么办法吗?此致!

答案1

自己编译一个旧版本:

cd
wget https://ftp.gnu.org/gnu/automake/automake-1.12.5.tar.gz
tar xf automake-1.12.5.tar.gz
cd automake-1.12.5
./configure --prefix=/usr/local
make
  • 使用 deb 包进行安装checkinstall,并更改包名称以便使用最新automake版本进行并行安装:

    sudo apt-get install checkinstall
    sudo checkinstall
    

    按下2 并将标题更改为:automake1.12

  • 或者经典方式

    sudo make install
    

automake1.12安装在 中/usr/local/bin,并且最新版本来自 中的存储库/usr/bin

相关内容