77

How can I install aclocal from the autotools bundle in Ubuntu 11.04? I tried to find it to no avail:

sudo apt-get install aclocal  
sudo apt-get install autotools-dev   
apt-cache search aclocal  
dpkg -S aclocal  
Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
719016
  • 6,087
  • 30
  • 80
  • 117

2 Answers2

165

I had to install automake instead of aclocal directly with 11.10.

Example:

sudo apt-get install autotools-dev
sudo apt-get install automake
Peachy
  • 7,077
  • 10
  • 37
  • 45
Luke
  • 1,659
  • 2
  • 10
  • 3
  • 4
    None of them helped me :( – user568021 Mar 22 '13 at 22:44
  • I did this for 12.04 LTS. The weird thing is I'm pretty sure I was building, in this case, the linaro android images using the same makefiles on this platform. I'm not sure why I need to reinstall aclocal now. – dturvene Jan 07 '14 at 18:56
33

This was answered by the original user

You need to install automake since m4 is a dependency:

sudo apt-get install autotools-dev

Then install aclocal via apt-get

Marco Ceppi
  • 47,783
  • 30
  • 172
  • 197